/* ============================================
   SKS Catering Services — Professional Minimalist Design
   Clean, Sophisticated, Timeless
   ============================================ */

:root {
  /* Minimalist color palette - neutral with strategic accents */
  --primary: #1a1a1a;
  --secondary: #4a4a4a;
  --accent: #d4a574;
  --accent-dark: #b8935f;
  --background: #ffffff;
  --surface: #fafafa;
  --border: #e5e5e5;
  --text-primary: #1a1a1a;
  --text-secondary: #6a6a6a;
  --text-muted: #9a9a9a;

  /* Refined shadows - subtle and elegant */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.08);

  /* Minimal border radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Typography - refined and elegant */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing system */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Deity Background Images - Subtle and Respectful */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    url('https://img.freepik.com/premium-photo/lord-ganesha-full-hd-high-resolution-with-lighting_849906-13194.jpg'),
    url('https://i.pinimg.com/originals/0b/db/2f/0bdb2f42df48f2546cfddf0b5feb514d.jpg'),
    url('https://png.pngtree.com/background/20230525/original/pngtree-the-hindu-god-lord-krishna-is-depicted-picture-image_2733746.jpg');
  background-position:
    top 10% left 5%,
    top 50% right 5%,
    bottom 10% left 50%;
  background-size:
    300px auto,
    250px auto,
    280px auto;
  background-repeat: no-repeat;
  opacity: 0.03;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 768px) {
  body::before {
    background-size:
      200px auto,
      180px auto,
      200px auto;
    background-position:
      top 5% left 2%,
      top 40% right 2%,
      bottom 5% center;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Header - Minimal and Clean */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-top: 0;
  padding-bottom: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

/* Navigation - Clean and Minimal */
nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-main li {
  list-style: none;
}

.nav-main a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--text-primary);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: '↓';
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
  transform: translateY(2px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  list-style: none;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 0.75rem 1.25rem;
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--text-primary);
  background: var(--surface);
  padding-left: 1.5rem;
}

.cta-nav {
  background: var(--primary);
  color: var(--background) !important;
  padding: 0.625rem 1.25rem !important;
  border-radius: var(--radius-md);
  font-weight: 500;
  margin-left: 0.5rem;
}

.cta-nav:hover {
  background: var(--secondary);
  color: var(--background) !important;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
  }

  .nav-main.is-open {
    display: flex;
  }

  .nav-main a {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background: var(--surface);
    margin-top: 0;
  }
}

/* Hero Section - Minimal and Impactful */
.hero {
  padding: var(--space-2xl) 0;
  background: var(--background);
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-line1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-line2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-subline {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.hero-highlight-notice {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b91c1c;
  /* Strong red for notice/warning feels */
  background: #fef2f2;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid #fca5a5;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons - Minimal and Elegant */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--primary);
  color: var(--background);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--surface);
  border-color: var(--text-primary);
}

/* Sections - Clean Spacing */
section {
  padding: var(--space-xl) 0;
}

.section-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
  line-height: 1.8;
}

/* Quote Section */
.quote-section {
  background: var(--surface);
  padding: var(--space-lg) 0;
}

.quote-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.quote-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.quote-form select {
  flex: 1;
  min-width: 300px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--background);
  transition: border-color 0.3s ease;
}

.quote-form select:focus {
  outline: none;
  border-color: var(--text-primary);
}

.quote-form button {
  min-width: 200px;
}

.trust-line {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Value Section */
.value-section {
  background: var(--background);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.value-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-featured-card {
  background: var(--surface);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.value-featured-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.value-featured-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.value-featured-card p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Services Section */
.services-section {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card-img {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card-img:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card-img-wrap {
  width: 100%;
  height: 200px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.service-card-img h3 {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-primary);
}

.service-card-img p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.service-card-img .btn {
  margin: 0 1.5rem 1.5rem;
  width: calc(100% - 3rem);
}

/* Stats Section */
.stats-section {
  background: var(--primary);
  color: var(--background);
  padding: var(--space-lg) 0;
}

.stats-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--background);
}

.stats-subline {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

/* Gallery Section */
.gallery {
  background: var(--background);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Why Section */
.why-section {
  background: var(--surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.why-card h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA Strip */
.cta-strip {
  background: var(--accent);
  padding: var(--space-lg) 0;
  text-align: center;
}

.cta-strip-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--background);
}

.cta-strip-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--background);
}

.cta-strip-text a {
  color: var(--background);
  text-decoration: underline;
  font-weight: 500;
}

.cta-strip .btn-primary {
  background: var(--background);
  color: var(--primary);
  border-color: var(--background);
}

.cta-strip .btn-primary:hover {
  background: var(--surface);
  border-color: var(--surface);
}

/* Contact Section */
.contact-section {
  background: var(--background);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-info strong {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 1.125rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--background);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--text-primary);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-feedback {
  font-size: 0.875rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.form-feedback-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-feedback-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--background);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--background);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-social-link:hover {
  color: var(--background);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-tagline {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* Animations - Subtle and Refined */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }

  .hero {
    min-height: 60vh;
    padding: var(--space-xl) 0;
  }

  section {
    padding: var(--space-lg) 0;
  }
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Pure Veg Section with Deity Imagery */
.pure-veg-section {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
  padding: var(--space-xl) 0;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.pure-veg-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .pure-veg-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.deity-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.deity-image-placeholder {
  text-align: center;
  padding: 1rem;
  background: var(--background);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 200px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.deity-image-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-dark);
}

.deity-image-placeholder img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  display: block;
}

.deity-image-placeholder p {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.deity-image-placeholder span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.5rem;
}

.pure-veg-message h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.veg-tagline {
  font-size: 1.25rem;
  color: var(--accent-dark);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 500;
}

.veg-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.veg-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.veg-icon {
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.veg-feature p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.veg-feature strong {
  color: var(--primary);
  font-weight: 600;
}

.veg-commitment {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  border: 1px solid var(--accent);
  font-style: italic;
}

/* Service Pages */
.service-details {
  background: var(--background);
  padding: var(--space-xl) 0;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.service-feature {
  text-align: left;
}

.service-feature h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.service-feature ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-feature li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.service-feature li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1.4;
}

/* Brahmin Wedding Services Grid */
.brahmin-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.service-item {
  background: var(--background);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.service-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.service-item p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.highlight-service {
  background: linear-gradient(135deg, #fffcf5 0%, #ffffff 100%);
  border: 2px solid var(--accent);
  position: relative;
}

.highlight-service::after {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  background: var(--accent);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Other Arrangements Grid */
.arrangements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.arrangement-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.arrangement-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.arrangement-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.arrangement-item:hover::before {
  opacity: 1;
}

/* Style for emojis/icons inside arrangement items to be larger */
.arrangement-item::first-letter {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
  width: 100%;
  line-height: 1;
}

/* Fallback for when emoji is part of text string in HTML */
.arrangement-item {
  font-size: 1rem;
}

/* Customization Banner */
.customization-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: white;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.customization-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 20%);
  pointer-events: none;
}

.customization-banner h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.customization-banner p {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.custom-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.custom-features span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.customization-banner .btn {
  background: var(--accent);
  color: white;
  border: none;
  font-weight: 600;
  padding: 1rem 2.5rem;
}

.customization-banner .btn:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .customization-banner {
    padding: 2rem 1.5rem;
  }

  .customization-banner h3 {
    font-size: 1.5rem;
  }

  .custom-features {
    gap: 1rem;
  }

  .custom-features span {
    font-size: 0.875rem;
    width: 100%;
    justify-content: center;
  }
}

/* Full Width Menu Sections */
.full-width {
  grid-column: 1 / -1;
}

/* Seer Section Layout */
.seer-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.seer-category h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.seer-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.seer-category li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.seer-category li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

@media (max-width: 768px) {
  .ceremony-content {
    grid-template-columns: 1fr;
  }

  .buffet-menu {
    grid-template-columns: 1fr;
  }

  .menu-section ul {
    grid-template-columns: 1fr;
  }

  .seer-section {
    grid-template-columns: 1fr;
  }
}

/* About Page Sections */
.about-story {
  background: var(--background);
  padding: var(--space-xl) 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.story-text p {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.about-expertise {
  background: var(--surface);
  padding: var(--space-xl) 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.expertise-item {
  text-align: left;
}

.expertise-item h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.expertise-item p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-values {
  background: var(--background);
  padding: var(--space-xl) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.value-item {
  text-align: left;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.value-item h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.value-item p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Print styles */
@media print {

  .site-header,
  .site-footer,
  .nav-toggle,
  .btn {
    display: none;
  }
}