/* ==========================================================================
   GrandVelour - Premium Event & Fine Dining Styling
   Theme: Luxurious Dark Green & Emerald Teal (Derived from Reference Design)
   ========================================================================== */

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

/* --- Design System / Custom Properties --- */
:root {
  --primary-dark: #003326;      /* Deep Forest Green - main background/dark base */
  --primary-accent: #00a884;    /* Vibrant Emerald Teal - accents, active buttons */
  --accent-light: #00c8a0;      /* Bright Teal for badges and highlights */
  --accent-bg: #e6faf6;         /* Very pale green background for badges/cards */
  --bg-light: #f4f7f6;          /* Light grey-green page background */
  --bg-dark-accent: #00261c;    /* Even deeper forest green for blocks */
  --text-dark: #121d1a;         /* Dark text, close to black with green undertone */
  --text-muted: #526660;        /* Muted green-grey for descriptions */
  --text-light: #ffffff;        /* White text */
  --border-color: #e2ece9;      /* Light border color */
  --border-color-dark: #124337; /* Border color for dark elements */
  --card-shadow: 0 10px 30px rgba(0, 51, 38, 0.05);
  --card-shadow-hover: 0 15px 40px rgba(0, 51, 38, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Base Resets & Typography --- */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  margin-top: 0;
}

a {
  color: var(--primary-accent);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

/* --- Spacing System --- */
.section-padding {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* --- Navigation Bar --- */
.navbar-custom {
  background-color: var(--primary-dark) !important;
  padding: 18px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid var(--border-color-dark);
}
.navbar-custom.navbar-scrolled {
  padding: 12px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-light) !important;
  letter-spacing: -0.5px;
}
.navbar-brand span {
  color: var(--primary-accent);
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 10px;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: var(--transition-smooth);
}
.nav-link:hover, .nav-item.active .nav-link {
  color: var(--text-light) !important;
  background-color: rgba(255, 255, 255, 0.05);
}

/* --- Button System --- */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-custom-primary {
  background-color: var(--primary-accent);
  color: var(--text-light);
}
.btn-custom-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 132, 0.2);
}
.btn-custom-secondary {
  background-color: transparent;
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}
.btn-custom-secondary:hover {
  background-color: var(--primary-accent);
  color: var(--text-light);
  transform: translateY(-2px);
}
.btn-custom-white {
  background-color: var(--text-light);
  color: var(--primary-dark);
}
.btn-custom-white:hover {
  background-color: var(--primary-accent);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* --- Section Elements --- */
.section-tagline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-accent);
  margin-bottom: 15px;
}
.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}
.section-title span {
  color: var(--primary-accent);
}
.section-desc {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 650px;
}
.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* --- Hero Section & Organic Shapes --- */
.hero-section {
  background-color: var(--primary-dark);
  position: relative;
  overflow: hidden;
  padding: 140px 0 160px 0;
  color: var(--text-light);
}
/* Organic shapes from the reference image */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,132,0.4) 0%, rgba(0,51,38,0) 70%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-shape-1 {
  width: 350px;
  height: 350px;
  top: -100px;
  right: -50px;
}
.hero-shape-2 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(0,200,160,0.2) 0%, rgba(0,51,38,0) 80%);
}
.hero-shape-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 15%;
  background: radial-gradient(circle, rgba(0,168,132,0.3) 0%, rgba(0,51,38,0) 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-content .hero-subtitle {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-accent);
  margin-bottom: 20px;
  display: inline-block;
}
.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 25px;
  letter-spacing: -1.5px;
}
.hero-content h1 span {
  color: var(--primary-accent);
  position: relative;
}
.hero-content .hero-desc {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* --- Service Cards Overlap Hero --- */
.overlap-cards-wrapper {
  margin-top: -100px;
  position: relative;
  z-index: 10;
}
.overlap-card {
  background-color: var(--primary-dark);
  border: 1px solid var(--border-color-dark);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  color: var(--text-light);
  transition: var(--transition-smooth);
  height: 100%;
}
.overlap-card:hover {
  transform: translateY(-8px);
  background-color: rgb(0 83 64);
  border-color: var(--primary-accent);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.overlap-icon {
  font-size: 40px;
  color: var(--primary-accent);
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--transition-smooth);
}
.overlap-card:hover .overlap-icon {
  transform: scale(1.1);
}
.overlap-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}
.overlap-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- Premium Layout Sections (Furniture Style) --- */
.modern-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}
.modern-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.modern-img-wrapper:hover img {
  transform: scale(1.03);
}
.stats-badge-wrapper {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background-color: var(--primary-dark);
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-accent);
  color: var(--text-light);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.stats-badge-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-accent);
  line-height: 1;
}
.stats-badge-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  font-weight: 500;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px;
}
.check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 500;
}
.check-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 20px;
  color: var(--primary-accent);
}

/* --- Category Grid (Dark forest backdrop with overlapping images) --- */
.category-section {
  background-color: var(--bg-dark-accent);
  color: var(--text-light);
}
.category-section h2 {
  color: var(--text-light);
}
.category-card {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  margin-bottom: 30px;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0,51,38,0.95) 0%, rgba(0,51,38,0.2) 60%, rgba(0,51,38,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  transition: var(--transition-smooth);
}
.category-card:hover img {
  transform: scale(1.05);
}
.category-card:hover .category-overlay {
  background: linear-gradient(0deg, rgba(0,168,132,0.95) 0%, rgba(0,51,38,0.4) 60%, rgba(0,51,38,0) 100%);
}
.category-card h3 {
  font-size: 24px;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 10px;
}
.category-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}
.category-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* --- Testimonial Section --- */
.testimonials-section {
  background-color: var(--bg-light);
}
.testimonial-card {
  background-color: var(--primary-dark);
  border: 1px solid var(--border-color-dark);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
  color: var(--text-light);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-accent);
}
.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}
.testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--primary-accent);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text-light);
}
.author-info p {
  font-size: 13px;
  color: var(--primary-accent);
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- Delivery & Promo Section --- */
.promo-card {
  background-color: var(--primary-dark);
  border-radius: 16px;
  padding: 40px;
  color: var(--text-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color-dark);
}
.promo-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0, 168, 132, 0.15);
  pointer-events: none;
}
.promo-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-accent);
  box-shadow: 0 15px 35px rgba(0, 51, 38, 0.15);
}
.promo-badge {
  display: inline-block;
  background-color: var(--primary-accent);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 25px;
  align-self: flex-start;
}
.promo-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-light);
}
.promo-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 30px;
}
.promo-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: auto;
}

/* --- Best Event Trends Showcase (2x4 Card Grid) --- */
.trend-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.trend-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-accent);
  box-shadow: var(--card-shadow-hover);
}
.trend-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.trend-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.trend-card:hover .trend-img-wrapper img {
  transform: scale(1.05);
}
.trend-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-accent);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 2;
}
.trend-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.trend-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.trend-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}
.trend-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  margin-top: auto;
}
.trend-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
}
.trend-price span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.trend-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-accent);
}
.trend-card:hover .trend-link {
  color: var(--primary-dark);
}

/* --- Marquee Text --- */
.marquee-container {
  background-color: var(--primary-accent);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 168, 132, 0.15);
}
.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.marquee-content span {
  margin: 0 40px;
}
.marquee-content span::after {
  content: '•';
  margin-left: 80px;
  color: var(--primary-dark);
}
@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* --- Help / Contact Section (Dark Green Grid with Form) --- */
.help-section {
  background-color: var(--primary-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.help-section h2 {
  color: var(--text-light);
}
.help-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,132,0.1) 0%, rgba(0,51,38,0) 70%);
  pointer-events: none;
}
.contact-form {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color-dark);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.form-group {
  margin-bottom: 20px;
}
.form-control-custom {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color-dark);
  border-radius: 8px;
  color: var(--text-light);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  transition: var(--transition-smooth);
}
.form-control-custom:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-accent);
  box-shadow: 0 0 10px rgba(0, 168, 132, 0.15);
  outline: none;
}
textarea.form-control-custom {
  resize: vertical;
  min-height: 120px;
}
.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.info-list {
  list-style: none;
  padding-left: 0;
  margin: 35px 0;
}
.info-list li {
  display: flex;
  margin-bottom: 25px;
  font-size: 15px;
}
.info-list li i {
  font-size: 22px;
  color: var(--primary-accent);
  margin-right: 20px;
  margin-top: 3px;
}
.info-list li span {
  color: rgba(255, 255, 255, 0.8);
}
.map-thumbnail {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1px solid var(--border-color-dark);
}
.map-thumbnail img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* --- Latest News & Articles --- */
.news-section {
  background-color: var(--bg-light);
}
.news-row-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 30px;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}
.news-row-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-accent);
  box-shadow: var(--card-shadow-hover);
}
.news-row-img {
  height: 100%;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
}
.news-row-card:hover .news-row-img {
  transform: scale(1.02);
}
.news-row-content {
  padding: 40px;
}
.news-date {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.news-row-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}
.news-row-content h3 a {
  color: var(--primary-dark);
}
.news-row-content h3 a:hover {
  color: var(--primary-accent);
}
.news-row-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 25px;
}
.news-more-btn {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-accent);
  display: inline-flex;
  align-items: center;
}
.news-more-btn i {
  margin-left: 8px;
  font-size: 16px;
  transition: var(--transition-smooth);
}
.news-row-card:hover .news-more-btn i {
  transform: translateX(5px);
}

/* --- Footer --- */
.footer-main {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 90px 0 0 0;
  border-top: 1px solid var(--border-color-dark);
}
.footer-widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}
.footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary-accent);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-light) !important;
  margin-bottom: 20px;
  display: inline-block;
}
.footer-logo span {
  color: var(--primary-accent);
}
.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}
.footer-social {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border: 1px solid var(--border-color-dark);
  transition: var(--transition-smooth);
}
.footer-social a:hover {
  background-color: var(--primary-accent);
  color: var(--text-light);
  border-color: var(--primary-accent);
  transform: translateY(-3px);
}
.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-links li {
  margin-bottom: 14px;
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition-smooth);
}
.footer-links li a:hover {
  color: var(--primary-accent);
  padding-left: 5px;
}
.footer-info-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-info-list li {
  display: flex;
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-info-list li i {
  color: var(--primary-accent);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid var(--border-color-dark);
  padding: 30px 0;
  margin-top: 60px;
}
.footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}
.footer-bottom-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}
.footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: var(--transition-smooth);
}
.footer-bottom-links li a:hover {
  color: var(--primary-accent);
}
@media (max-width: 768px) {
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 25px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color-dark);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  display: none;
}
.cookie-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  flex: 1;
  min-width: 280px;
}
.cookie-text a {
  color: var(--primary-accent);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.cookie-btn-accept {
  background-color: var(--primary-accent);
  color: var(--text-light);
}
.cookie-btn-accept:hover {
  background-color: var(--accent-light);
  transform: translateY(-1px);
}
.cookie-btn-decline {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
}

/* --- Internal Banner (Subpages Hero) --- */
.subpage-hero {
  background-color: var(--primary-dark);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px 0;
  color: var(--text-light);
  text-align: center;
  border-bottom: 1px solid var(--border-color-dark);
}
.subpage-hero h1 {
  color: var(--text-light);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}
.subpage-breadcrumbs {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
.subpage-breadcrumbs a {
  color: var(--primary-accent);
}
.subpage-breadcrumbs span {
  margin: 0 10px;
}

/* --- Responsive Utility Adjustments --- */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 48px;
  }
  .overlap-cards-wrapper {
    margin-top: -60px;
  }
  .overlap-card {
    margin-bottom: 20px;
  }
  .category-card {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 38px;
  }
  .section-title {
    font-size: 30px;
  }
  .overlap-cards-wrapper {
    margin-top: -40px;
  }
  .promo-card {
    margin-bottom: 25px;
  }
}

/* --- Slick Dots Premium Styling --- */
.slick-dots {
  display: flex !important;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
  gap: 12px;
}
.slick-dots li {
  margin: 0;
  padding: 0;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: rgba(0, 51, 38, 0.15);
  border-radius: 50%;
  transition: var(--transition-smooth);
}
.slick-dots li button:hover {
  background: rgba(0, 168, 132, 0.5);
}
.slick-dots li.slick-active button {
  background-color: var(--primary-accent);
  width: 24px;
  border-radius: 5px;
}
