/* Stack social icons vertically in Quick Links, but keep left-aligned */
.footer-section ul li.social-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 8px !important;
  margin-top: 18px !important;
}

/* Show More Button - Large and Prominent */
.show-more-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 16px 45px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  margin: 32px auto 0 auto;
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.show-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.4);
}
.show-more-btn:active {
  transform: translateY(0);
}
/* ===========================
   Global Styles - Professional Light Theme
   Manjal Catering Premium Website
   =========================== */

:root {
  /* Warm Beige/Cream Color Palette - Above & Beyond Catering Theme */
  --primary-dark: #951f44;
  --primary: #b8365b;
  --primary-light: #f8e8ed;
  --accent: #d4a866;
  --accent-light: #f5e6d3;
  --success: #a8c686;
  --warning: #b8365b;
  --error: #d98686;

  /* Neutral Warm Colors */
  --text-dark: #4a4139;
  --text-light: #6e6456;
  --text-lighter: #8a7f73;
  --bg-white: #ffffff;
  --bg-light: #faf8f5;
  --bg-lighter: #f5f2ed;
  --border: #e8e4de;
  --border-light: #f0ede8;

  /* Gradients - Warm Beige Tones */
  --gradient-primary: linear-gradient(135deg, #951f44, #b8365b);
  --gradient-accent: linear-gradient(135deg, #d4a866, #e8c488);
  --gradient-subtle: linear-gradient(135deg, #faf8f5, #f5f2ed);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont,
    sans-serif;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

h1 {
  font-size: 3.8rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 {
  font-size: 2.8rem;
  letter-spacing: -0.01em;
  font-weight: 700;
  background: transparent !important;
  color: var(--text-dark);
}

h3 {
  font-size: 1.85rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
}

h4 {
  font-size: 1.35rem;
  color: var(--primary-dark);
  font-weight: 700;
}

p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 450;
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-submit {
  background: var(--gradient-primary);
  color: white;
  padding: 14px 35px;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: transparent !important;
  display: inline-block;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 0;
  line-height: 1.3;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.section-description {
  text-align: center;
  font-size: 1.15rem;
  color: #6b7280;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 450;
  line-height: 1.8;
  background: transparent !important;
  padding: 0 20px;
}

/* Page Header - Parallax Banner */
.page-header {
  background-image: url("https://images.unsplash.com/photo-1555244162-803834f70033?w=1920");
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  padding: 150px 0 100px;
  text-align: center;
  margin-top: 70px;
  position: relative;
  min-height: 400px;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(149, 31, 68, 0.45),
    rgba(184, 54, 91, 0.45)
  );
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header-box {
  max-width: 800px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 800;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.page-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  font-size: 1rem;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
}

.breadcrumb-item a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff7ed;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 5px 10px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
  color: #4a4139;
  padding: 50px 0 20px;
  border-top: 3px solid #951f44;
  box-shadow: 0 -4px 20px rgba(217, 119, 6, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: #d97706;
  margin-bottom: 15px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.footer-section p {
  line-height: 1.7;
  color: #6e6456;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.footer-section p a {
  color: #d97706;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer-section p a:hover {
  color: #f59e0b;
  border-bottom-color: #f59e0b;
}

.footer-section p strong {
  color: #4a4139;
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #6e6456;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.92rem;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-section ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #f59e0b;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(-5px);
}

.footer-section ul li a:hover {
  color: #d97706;
  transform: translateX(5px);
}

.footer-section ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Social Links in Footer */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1),
    rgba(251, 191, 36, 0.15)
  );
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  color: #d97706;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
}

.social-links a:hover {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  border-color: #f59e0b;
}

.service-areas {
  line-height: 1.8;
  color: #6e6456;
  font-size: 0.92rem;
}

.footer-bottom {
  text-align: center;
  padding: 20px 20px 15px;
  border-top: 2px solid rgba(245, 158, 11, 0.2);
  color: #8a7f73;
  font-size: 0.88rem;
  margin-top: 15px;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom a {
  color: #d97706;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 0 5px;
}

.footer-bottom a:hover {
  color: #f59e0b;
  text-decoration: underline;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--bg-white);
  margin: 5% auto;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 520px;
  position: relative;
  animation: slideDown 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
}

@keyframes slideDown {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h2 {
  margin-bottom: 25px;
  color: var(--text-dark);
}

.close {
  color: var(--text-light);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  margin-top: -10px;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: var(--text-dark);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1.02rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: var(--bg-white);
  color: var(--text-dark);
  font-weight: 450;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group input::placeholder {
  color: var(--text-lighter);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}
.mt-3 {
  margin-top: 30px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-3 {
  margin-bottom: 30px;
}

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Floating Book Now Button */
.floating-book-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(149, 31, 68, 0.7);
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(149, 31, 68, 0.45);
  cursor: pointer;
  z-index: 998;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  animation: floatPulse 2s ease-in-out infinite;
}

.floating-book-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(15, 118, 110, 0.5);
  background: rgba(149, 31, 68, 0.8);
}

.floating-book-btn:active {
  transform: translateY(-2px) scale(1.02);
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media screen and (max-width: 768px) {
  .floating-book-btn {
    bottom: 20px;
    right: 20px;
    padding: 14px 20px;
    font-size: 0.95rem;
    gap: 8px;
  }
}

@media screen and (max-width: 480px) {
  .floating-book-btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

/* Character-by-Character Animation */
.char-animate {
  display: inline-block;
  opacity: 0;
  animation: charFadeIn 0.4s ease-out forwards;
}

.word-wrapper {
  display: inline-block;
  white-space: nowrap;
  margin-right: 0.3em;
}

@keyframes charFadeIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* Preserve spaces in animated text */
.animated-heading {
  display: block;
  line-height: 1.2;
}
