/* 
================================================================
   HOST CATERERS - PREMIUM CATERING SERVICES IN JAIPUR
   DESIGN SYSTEM & CSS STYLESHEET
   Author: Antigravity AI
================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  /* Brand Color Palette */
  --primary: #E86A17;
  --primary-rgb: 232, 106, 23;
  --secondary: #1B1B1B;
  --secondary-rgb: 27, 27, 27;
  --accent: #D4A64A;
  --accent-rgb: 212, 166, 74;
  --bg: #FFFFFF;
  --bg-light: #F8F8F8;
  --bg-dark: #121212;
  --text: #222222;
  --text-muted: #666666;
  --text-light: #FFFFFF;
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(255, 255, 255, 0.1);
  
  /* Glassmorphism & Translucency */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-dark: rgba(27, 27, 27, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-border-dark: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
  
  /* Shadows & Curves */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 8px 24px rgba(212, 166, 74, 0.15);
  --shadow-orange: 0 8px 24px rgba(232, 106, 23, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout sizes */
  --header-height: 80px;
  --max-width: 1280px;
}

/* 1. RESET & INITIAL STYLING */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.5rem; position: relative; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 2. BASE UTILITY CLASSES */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section-padding {
  padding: 6rem 0;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }

.flex { display: flex; }
.grid { display: grid; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

/* Section Header styling */
.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.section-tag {
  color: var(--primary);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.75rem;
  position: relative;
}

.section-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  margin: 0.5rem auto 0 auto;
  border-radius: var(--radius-full);
}

/* Background utility classes */
.bg-dark {
  background-color: var(--secondary);
  color: var(--text-light);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--text-light);
}

.bg-dark .text-muted {
  color: #a8a8a8;
}

.bg-light {
  background-color: var(--bg-light);
}

/* 3. BUTTONS & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: var(--transition);
  z-index: -1;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-orange);
}

.btn-primary::before {
  background-color: var(--secondary);
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary::before {
  background-color: var(--primary);
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--secondary);
  box-shadow: var(--shadow-gold);
}

.btn-accent::before {
  background-color: var(--secondary);
}

.btn-accent:hover::before {
  width: 100%;
}

.btn-accent:hover {
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background-color: var(--bg);
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.btn-white::before {
  background-color: var(--primary);
}

.btn-white:hover::before {
  width: 100%;
}

.btn-white:hover {
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--bg);
  color: var(--bg);
}

.btn-outline-white::before {
  background-color: var(--bg);
}

.btn-outline-white:hover::before {
  width: 100%;
}

.btn-outline-white:hover {
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* 4. PRELOADER & LOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.loader-logo span {
  color: var(--primary);
}

.loader-bar {
  width: 150px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}

.loader-progress {
  width: 0;
  height: 100%;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  animation: load 2.5s ease-in-out forwards;
}

@keyframes load {
  0% { width: 0%; }
  35% { width: 45%; }
  65% { width: 75%; }
  100% { width: 100%; }
}

/* 5. HEADER & NAVIGATION */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

/* Sticky Header Style */
header.sticky {
  height: 70px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

header.sticky.bg-dark-active {
  background-color: var(--glass-bg-dark);
  border-bottom: 1px solid var(--glass-border-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary);
}

/* Sticky Logo adjustments if header has dark sections */
header.sticky .logo {
  color: var(--secondary);
}

header.on-hero .logo-white {
  color: var(--text-light);
}

header.sticky .logo-white {
  color: var(--secondary);
}

header.sticky.bg-dark-active .logo-white {
  color: var(--text-light);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-links li a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--secondary);
  position: relative;
  padding: 0.5rem 0;
}

header.on-hero .nav-links li a {
  color: var(--text-light);
}

header.sticky .nav-links li a {
  color: var(--secondary);
}

header.sticky.bg-dark-active .nav-links li a {
  color: var(--text-light);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta-btn {
  padding: 0.65rem 1.5rem !important;
  font-size: 0.85rem !important;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  z-index: 1002;
  padding: 0.5rem;
}

.hamburger .line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--secondary);
  margin: 5px auto;
  transition: var(--transition-fast);
}

header.on-hero .hamburger .line {
  background-color: var(--text-light);
}

header.sticky .hamburger .line {
  background-color: var(--secondary);
}

header.sticky.bg-dark-active .hamburger .line {
  background-color: var(--text-light);
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger.active .line {
  background-color: var(--secondary) !important;
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left 0.5s cubic-bezier(0.77,0,0.175,1);
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  margin-bottom: 3rem;
}

.mobile-nav-links li {
  margin: 2rem 0;
}

.mobile-nav-links li a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.mobile-nav-links li a.active,
.mobile-nav-links li a:hover {
  color: var(--primary);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  max-width: 300px;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--primary);
  width: 0%;
  z-index: 1003;
  transition: width 0.1s ease-out;
}

/* 6. HERO BANNER - GENERAL & PAGE SPECIFIC */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--secondary);
  color: var(--text-light);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.7);
  animation: zoomSlow 25s infinite alternate;
}

@keyframes zoomSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.4) 0%, rgba(27, 27, 27, 0.9) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-height) - 10px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.15;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-highlight-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Hero Collage (Right Side) */
.hero-collage {
  position: relative;
  height: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage-img-wrapper {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.collage-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.collage-img-wrapper:hover img {
  transform: scale(1.08);
}

.collage-img-1 {
  width: 250px;
  height: 330px;
  top: 10%;
  left: 5%;
  z-index: 2;
}

.collage-img-2 {
  width: 220px;
  height: 200px;
  bottom: 5%;
  right: 5%;
  z-index: 1;
}

.collage-img-3 {
  width: 180px;
  height: 160px;
  top: 5%;
  right: 15%;
  z-index: 3;
}

/* Floating Badge */
.experience-badge {
  position: absolute;
  bottom: 15%;
  left: -5%;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.8rem;
  z-index: 4;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
}

.experience-badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.experience-badge-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.3;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Inner Page Hero Header */
.inner-hero {
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--secondary);
  color: var(--text-light);
  overflow: hidden;
}

.inner-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
}

.inner-hero-title {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs li a {
  transition: var(--transition-fast);
}

.breadcrumbs li a:hover {
  color: var(--accent);
}

.breadcrumbs li::after {
  content: '/';
  margin-left: 0.5rem;
}

.breadcrumbs li:last-child::after {
  content: '';
}

.breadcrumbs li:last-child {
  color: var(--accent);
  font-weight: 500;
}

/* 7. CARDS & GRID COMPONENTS */
/* Rounded Luxury Card */
.luxury-card {
  background-color: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 166, 74, 0.3);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
  width: 100%;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.luxury-card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.card-icon-overlay {
  position: absolute;
  bottom: -20px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: var(--transition);
}

.luxury-card:hover .card-icon-overlay {
  background-color: var(--secondary);
  color: var(--accent);
  transform: scale(1.1);
}

.card-content {
  padding: 2rem 1.8rem 1.8rem 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.luxury-card:hover .card-title {
  color: var(--primary);
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.5;
}

.card-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-btn svg {
  transition: var(--transition-fast);
}

.card-btn:hover {
  color: var(--primary);
}

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

/* Why Choose Us - Simple Icon Card */
.icon-card {
  background-color: var(--bg);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 106, 23, 0.2);
}

.icon-container {
  width: 65px;
  height: 65px;
  background-color: rgba(232, 106, 23, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 1.5rem auto;
  transition: var(--transition);
}

.icon-card:hover .icon-container {
  background-color: var(--primary);
  color: var(--text-light);
  transform: rotateY(180deg);
}

.icon-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.icon-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* 8. PROCESS TIMELINE */
.timeline-container {
  position: relative;
  margin-top: 2rem;
}

/* Desktop horizontal timeline styling */
.timeline-track {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(232, 106, 23, 0.1);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--accent);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.timeline-step {
  text-align: center;
}

.step-node {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background-color: var(--bg);
  border: 4px solid rgba(232, 106, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-step:hover .step-node {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--text-light);
  transform: scale(1.1);
  box-shadow: var(--shadow-orange);
}

.step-node svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: var(--transition);
}

.timeline-step:hover .step-node svg {
  color: var(--text-light);
}

.step-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  padding: 0 0.5rem;
}

/* Timeline animations triggered by visibility class */
.timeline-container.visible .timeline-progress {
  width: 100%;
}

/* 9. GALLERY MASONRY & LIGHTBOX */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 280px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-item.large-w {
  grid-column: span 2;
}

.gallery-item.large-h {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0) 40%, rgba(27, 27, 27, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
  transform: translateY(10px);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-category {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.gallery-title {
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(27, 27, 27, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  outline: none;
}

.lightbox-caption {
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* 10. TESTIMONIALS SLIDER */
.testimonials-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 1rem;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(232, 106, 23, 0.05);
  line-height: 1;
  pointer-events: none;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  margin: 0 auto 1.5rem auto;
  border: 3px solid var(--accent);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Dots navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 0.8rem;
  margin-top: 2rem;
}

.slider-dots li button {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: rgba(27, 27, 27, 0.15);
  border: none;
  cursor: pointer;
  outline: none;
  transition: var(--transition-fast);
}

.slider-dots li.active button {
  background-color: var(--primary);
  width: 25px;
}

/* 11. STATS SECTION */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-muted);
}

.bg-dark .stat-title {
  color: rgba(255, 255, 255, 0.7);
}

/* 12. FAQ ACCORDION */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background-color: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(232, 106, 23, 0.25);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon-wrapper {
  background-color: var(--primary);
  color: var(--text-light);
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
  padding: 0 2rem 1.8rem 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 13. QUICK CONTACTS, MAPS & FORMS */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Form Styles */
.contact-form-wrapper {
  background-color: var(--bg);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  color: var(--text);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--bg);
  box-shadow: 0 0 0 3px rgba(232, 106, 23, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Input validation styles */
.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
  color: #dc3545;
  font-size: 0.75rem;
  margin-top: 0.3rem;
  font-weight: 500;
  display: none;
}

/* Info Cards & Maps */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-item-icon {
  width: 55px;
  height: 55px;
  background-color: rgba(232, 106, 23, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.info-item-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.info-item-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Map placeholder / Frame */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

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

/* 14. CUISINES & PACKAGES SECTIONS (SERVICES PAGE) */
.cuisines-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3.5rem;
}

.cuisine-tab-btn {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  padding: 0.8rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cuisine-tab-btn:hover,
.cuisine-tab-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: var(--shadow-orange);
}

.cuisine-content-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.cuisine-content-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cuisine-text-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.cuisine-text-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cuisine-dish-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.cuisine-dish-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.cuisine-dish-item svg {
  color: var(--accent);
}

.cuisine-image-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  box-shadow: var(--shadow-md);
}

.cuisine-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Service Packages Cards */
.package-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.package-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: var(--font-heading);
  margin-bottom: 2rem;
  color: var(--primary);
}

.package-price-val {
  font-size: 2.2rem;
  font-weight: 800;
}

.package-price-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.package-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
  text-align: left;
}

.package-features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.package-features li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.package-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

/* 15. STORY JOURNEY & TEAM (ABOUT PAGE) */
/* Story timeline */
.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: rgba(232, 106, 23, 0.15);
  transform: translateX(-50%);
}

.journey-item {
  position: relative;
  width: 50%;
  margin-bottom: 4rem;
}

.journey-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.journey-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

.journey-dot {
  position: absolute;
  top: 15px;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background-color: var(--bg);
  border: 4px solid var(--primary);
  z-index: 2;
}

.journey-item:nth-child(odd) .journey-dot {
  right: -10px;
}

.journey-item:nth-child(even) .journey-dot {
  left: -10px;
}

.journey-card {
  background-color: var(--bg);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.journey-item:hover .journey-card {
  border-color: rgba(232, 106, 23, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.journey-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.journey-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.journey-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Meet Team Grid */
.team-member-card {
  background-color: var(--bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-img-box {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-member-card:hover .team-img-box img {
  transform: scale(1.06);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* 16. FINAL CALL TO ACTION (CTA) */
.final-cta {
  position: relative;
  background-color: var(--secondary);
  color: var(--text-light);
  overflow: hidden;
  padding: 8rem 0;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.final-cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* 17. FLOATING ACTION BUTTONS & WIDGETS */
.floating-widgets {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.float-whatsapp {
  background-color: #25d366;
}

.float-whatsapp:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.float-call {
  background-color: var(--primary);
}

.float-call:hover {
  box-shadow: var(--shadow-orange);
}

.back-to-top {
  background-color: var(--secondary);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.back-to-top:hover {
  background-color: var(--accent);
  color: var(--secondary);
}

/* 18. FOOTER */
footer {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  display: inline-block;
}

.footer-brand p {
  color: #a8a8a8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  list-style: none;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links li a {
  color: #a8a8a8;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-info-list li {
  display: flex;
  gap: 0.8rem;
  color: #a8a8a8;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-info-list li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-info-list li a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #888888;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-bottom-links li a:hover {
  color: var(--text-light);
}

/* 19. ANIMATION & REVEAL SYSTEM CLASSES */
.reveal {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible,
.reveal-up.visible,
.reveal-scale.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger transitions (requires setting transition-delay in JS inline or CSS) */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* 20. RESPONSIVE MEDIA QUERIES (MOBILE FIRST COMPATIBLE / OVERRIDES) */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-collage {
    display: none; /* Hide complex collage on smaller screens/tablets */
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .section-padding {
    padding: 4.5rem 0;
  }
  .nav-links, .nav-cta {
    display: none; /* Replaced by hamburger & mobile overlay */
  }
  .hamburger {
    display: block;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .timeline-track {
    display: none; /* Hide track line on mobile vertical timeline */
  }
  .timeline-step {
    display: flex;
    text-align: left;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .step-node {
    margin: 0;
    flex-shrink: 0;
  }
  .step-desc {
    padding: 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .cuisine-content-panel.active {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cuisine-image-panel {
    height: 250px;
  }
  .journey-timeline::before {
    left: 20px;
  }
  .journey-item {
    width: 100%;
    margin-bottom: 3rem;
  }
  .journey-item:nth-child(odd),
  .journey-item:nth-child(even) {
    left: 0;
    padding-left: 3rem;
    padding-right: 0;
    text-align: left;
  }
  .journey-item:nth-child(odd) .journey-dot,
  .journey-item:nth-child(even) .journey-dot {
    left: 10px;
    right: auto;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .testimonial-card {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gallery-item.large-w {
    grid-column: auto;
  }
  .gallery-item.large-h {
    grid-row: auto;
  }
  .floating-widgets {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .float-btn {
    width: 50px;
    height: 50px;
  }
}
