/* =============================================
   AutoBeccs Innovative Solutions - Style System
   Brand: Orange + Forest Green + Clean Neutrals
   ============================================= */

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg);
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  font-weight: 600;
}

p {
  line-height: 1.75;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  /* Brand Colors (from logo) */
  --orange: #e87a2e;
  --orange-light: #f09450;
  --orange-dark: #d06520;
  --orange-muted: rgba(232, 122, 46, 0.12);

  --green: #2a6e3f;
  --green-light: #3a8a52;
  --green-dark: #1b5430;
  --green-deeper: #143d22;

  /* Neutrals */
  --bg: #f8f9fa;
  --bg-alt: #f1f3f5;
  --bg-card: #ffffff;
  --text-primary: #1a1d21;
  --text-secondary: #52616b;
  --text-muted: #8b95a2;

  /* Borders */
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.14);
  --border-orange: rgba(232, 122, 46, 0.25);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.10), 0 8px 16px rgba(0, 0, 0, 0.04);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Legacy aliases (keep templates working) */
  --gold: var(--orange);
  --gold-light: var(--orange-light);
  --gold-dark: var(--orange-dark);
  --navy: var(--green-dark);
  --navy-light: var(--green);
  --cream: var(--bg);
  --cream-dark: var(--bg-alt);
  --burgundy: var(--orange);
  --muted-foreground: var(--text-secondary);
}

::selection {
  background: rgba(232, 122, 46, 0.15);
  color: var(--orange-dark);
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Colors */
.text-gold {
  color: var(--orange);
}

.text-navy {
  color: var(--green-dark);
}

.text-white {
  color: white;
}

.text-muted-foreground {
  color: var(--text-secondary);
}

.text-gold-light {
  color: var(--orange-light);
}

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

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

.bg-navy {
  background-color: var(--green-dark);
}

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

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

.bg-transparent {
  background-color: transparent;
}

.bg-white\/50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-white\/70 {
  background-color: rgba(255, 255, 255, 0.7);
}

.bg-background\/95 {
  background-color: rgba(255, 255, 255, 0.95);
}

.bg-background\/98 {
  background-color: rgba(255, 255, 255, 0.98);
}

.bg-background\/60 {
  background-color: rgba(255, 255, 255, 0.6);
}

.bg-background\/50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-navy\/20 {
  background-color: rgba(27, 84, 48, 0.2);
}

.bg-navy\/90 {
  background-color: rgba(27, 84, 48, 0.9);
}

.bg-navy\/95 {
  background-color: rgba(27, 84, 48, 0.95);
}

.bg-navy\/50 {
  background-color: rgba(27, 84, 48, 0.5);
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-navy\/90 {
  --tw-gradient-from: rgba(27, 84, 48, 0.9);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 84, 48, 0));
}

.via-navy\/50 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(27, 84, 48, 0.5), var(--tw-gradient-to, rgba(27, 84, 48, 0));
}

.via-navy\/60 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(27, 84, 48, 0.6), var(--tw-gradient-to, rgba(27, 84, 48, 0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-gold {
  border-color: var(--orange);
}

.border-gold\/30 {
  border-color: var(--border-orange);
}

.border-gold\/20 {
  border-color: rgba(232, 122, 46, 0.15);
}

.rounded {
  border-radius: var(--radius-sm);
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-full {
  border-radius: 9999px;
}

.font-playfair {
  font-family: "Playfair Display", serif;
}

.font-playfair.font-light {
  font-weight: 500;
}

.font-montserrat {
  font-family: "Poppins", sans-serif;
}

/* Layout */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Spacing */
.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-28 {
  padding-top: 7rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 2rem;
}

.mt-16 {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .md\:mt-16 {
    margin-top: 3rem;
  }
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Sizing */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.min-h-screen {
  min-height: 100vh;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.h-\[70vh\] {
  height: 70vh;
}

.h-\[90vh\] {
  height: 90vh;
}

.h-\[40vh\] {
  height: 40vh;
}

.h-\[50vh\] {
  height: 50vh;
}

.h-\[250px\] {
  height: 250px;
}

.h-\[300px\] {
  height: 300px;
}

.max-h-\[740px\] {
  max-height: 740px;
}

.min-h-\[100px\] {
  min-height: 100px;
}

.min-h-\[120px\] {
  min-height: 120px;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-18 {
  height: 4.5rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-64 {
  height: 16rem;
}

.h-px {
  height: 1px;
}

.h-auto {
  height: auto;
}

.w-2\.5 {
  width: 0.625rem;
}

.h-2\.5 {
  height: 0.625rem;
}

.w-3 {
  width: 0.75rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-28 {
  width: 7rem;
}

.w-40 {
  width: 10rem;
}

/* Positioning */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-full {
  top: 100%;
}

.left-1\/2 {
  left: 50%;
}

.bottom-4 {
  bottom: 1rem;
}

.bottom-6 {
  bottom: 1.5rem;
}

.bottom-8 {
  bottom: 2rem;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

/* Display */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

/* Text */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.3;
}

/* Shadows */
.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Transitions */
.transition-all {
  transition: all 300ms var(--ease-in-out);
}

.transition-colors {
  transition: color 300ms, background-color 300ms, border-color 300ms;
}

.transition-transform {
  transition: transform 300ms var(--ease-in-out);
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.transform {
  transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0));
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

/* Hover */
.hover\:text-gold:hover {
  color: var(--orange);
}

.hover\:bg-gold:hover {
  background-color: var(--orange);
}

.hover\:shadow-xl:hover {
  box-shadow: var(--shadow-xl);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.hover\:bg-white\/70:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.focus\:outline-none:focus {
  outline: none;
}

/* Object & misc */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.aspect-video {
  aspect-ratio: 16/9;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.backdrop-blur {
  backdrop-filter: blur(8px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.resize-none {
  resize: none;
}

.space-y-2>*+* {
  margin-top: 0.5rem;
}

.space-y-3>*+* {
  margin-top: 0.75rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.space-y-8>*+* {
  margin-top: 2rem;
}

.space-y-12>*+* {
  margin-top: 3rem;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

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

video {
  max-width: 100%;
  height: auto;
}

header a {
  color: inherit;
}

@supports (backdrop-filter: blur(8px)) {
  .supports-\[backdrop-filter\]\:bg-background\/60 {
    background-color: rgba(255, 255, 255, 0.6);
  }
}

/* =============================================
   RESPONSIVE UTILITIES
   ============================================= */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
  }

  .sm\:text-base {
    font-size: 1rem;
  }

  .sm\:mt-6 {
    margin-top: 1.5rem;
  }

  .sm\:mt-8 {
    margin-top: 2rem;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:bottom-6 {
    bottom: 1.5rem;
  }

  .sm\:w-3 {
    width: 0.75rem;
  }

  .sm\:h-3 {
    height: 0.75rem;
  }

  .sm\:w-6 {
    width: 1.5rem;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:block {
    display: block;
  }

  .md\:h-16 {
    height: 4rem;
  }

  .md\:h-20 {
    height: 5rem;
  }

  .md\:h-10 {
    height: 2.5rem;
  }

  .md\:h-12 {
    height: 3rem;
  }

  .md\:h-14 {
    height: 3.5rem;
  }

  .md\:h-18 {
    height: 4.5rem;
  }

  .md\:h-24 {
    height: 6rem;
  }

  .md\:h-32 {
    height: 8rem;
  }

  .md\:w-20 {
    width: 5rem;
  }

  .md\:w-24 {
    width: 6rem;
  }

  .md\:w-32 {
    width: 8rem;
  }

  .md\:w-40 {
    width: 10rem;
  }

  .md\:w-56 {
    width: 14rem;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-1\/3 {
    width: 33.333%;
  }

  .md\:w-2\/3 {
    width: 66.667%;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:gap-3 {
    gap: 0.75rem;
  }

  .md\:gap-5 {
    gap: 1.25rem;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:gap-12 {
    gap: 3rem;
  }

  .md\:mt-6 {
    margin-top: 1.5rem;
  }

  .md\:mt-12 {
    margin-top: 3rem;
  }

  .md\:mt-16 {
    margin-top: 4rem;
  }

  .md\:mb-16 {
    margin-bottom: 4rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:pt-24 {
    padding-top: 6rem;
  }

  .md\:pt-28 {
    padding-top: 7rem;
  }

  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:space-y-8>*+* {
    margin-top: 2rem;
  }

  .md\:text-sm {
    font-size: 0.875rem;
  }

  .md\:text-base {
    font-size: 1rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
  }

  .md\:col-span-2 {
    grid-column: span 2;
  }

  .md\:max-w-xl {
    max-width: 36rem;
  }

  .md\:bottom-8 {
    bottom: 2rem;
  }

  .md\:w-16 {
    width: 4rem;
  }

  .md\:w-24 {
    width: 6rem;
  }
}

@media (min-width: 1024px) {
  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:gap-16 {
    gap: 4rem;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lg\:text-xl {
    font-size: 1.25rem;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
  }

  .lg\:pt-28 {
    padding-top: 7rem;
  }

  .lg\:block {
    display: block;
  }

  .lg\:col-span-1 {
    grid-column: span 1;
  }

  .lg\:max-w-2xl {
    max-width: 42rem;
  }

  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }
}

@media (min-width: 1280px) {
  .xl\:text-6xl {
    font-size: 3.75rem;
  }
}

/* =============================================
   HEADER
   ============================================= */
header {
  transition: all 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.95);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

header nav a {
  position: relative;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: all 0.3s var(--ease-out);
  border-radius: 1px;
  transform: translateX(-50%);
}

header nav a:hover::after,
header nav a.active::after {
  width: 100%;
}

header nav a:hover {
  color: var(--text-primary);
}

header nav a.active {
  color: var(--orange);
}

/* Nav Call Button */
.nav-call-btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.4s var(--ease-out);
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  background: var(--orange);
  color: white;
  border: none;
}

.nav-call-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 122, 46, 0.3);
}

@media (min-width: 768px) {
  .nav-call-btn {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
}

.mobile-menu-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.mobile-menu-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.nav-call-btn-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  background: var(--orange);
  color: white;
  border: none;
  width: 100%;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  text-align: center;
  transition: all 0.4s ease;
}

.nav-call-btn-mobile:hover {
  background: var(--orange-dark);
}

/* Mobile menu */
#mobile-menu {
  transition: all 0.35s var(--ease-out);
  transform: translateY(-8px);
  opacity: 0;
}

#mobile-menu:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
}

#mobile-menu.hidden {
  pointer-events: none;
}

#mobile-menu nav a {
  transition: all 0.2s ease;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

#mobile-menu nav a:hover {
  color: var(--orange);
  padding-left: 0.5rem;
}

/* =============================================
   GRADIENT SECTIONS (CTA bands)
   ============================================= */
.luxury-gradient {
  background: #fdf6f0;
}

.cta-gradient {
  background: linear-gradient(135deg, var(--green-deeper) 0%, var(--green-dark) 40%, var(--green) 100%);
}

/* =============================================
   PREMIUM SECTION SYSTEM
   ============================================= */
.section-block {
  padding: 3rem 0;
  background: var(--bg-card);
}

@media (min-width: 768px) {
  .section-block {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .section-block {
    padding: 5rem 0;
  }
}

.section-block-alt {
  background: var(--bg);
}

.section-block-warm {
  background: #fdf6f0;
}

/* Section Labels */
.section-label-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-label-centered {
  justify-content: center;
}

.section-label-bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--orange);
}

.section-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
}

/* Section Headings */
.section-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-heading {
    font-size: 2.875rem;
  }
}

.section-body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 1.25rem;
  max-width: 600px;
}

@media (min-width: 768px) {
  .section-body {
    font-size: 1rem;
  }
}

.section-header-centered {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

@media (min-width: 768px) {
  .section-header-centered {
    margin-bottom: 4rem;
  }
}

.section-header-centered .section-body {
  margin-left: auto;
  margin-right: auto;
}

/* Content Split Layout */
.content-split {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .content-split {
    flex-direction: row;
    gap: 5rem;
  }

  .content-split-reversed {
    flex-direction: row-reverse;
  }
}

.content-split-text {
  flex: 1;
}

.content-split-media {
  flex: 1;
  width: 100%;
}

/* Premium Image Frame */
.premium-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
}

.premium-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.premium-image-frame:hover img {
  transform: scale(1.03);
}

.premium-image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
}

/* Feature List */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.feature-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 600px;
  }
}

#hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  animation: heroImageZoom 8s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.3) 30%,
      rgba(0, 0, 0, 0.55) 70%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1.5rem 1rem;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content-wrapper {
    margin-top: -6rem;
  }
}

/* Hero Label */
.hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-label {
    margin-bottom: 2rem;
  }
}

.hero-label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-label-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .hero-label-line {
    width: 48px;
  }

  .hero-label-text {
    font-size: 0.6875rem;
  }
}

/* Hero Title */
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-title-accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 5.25rem;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.0625rem;
    margin-top: 1.5rem;
  }
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 320px;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    gap: 1rem;
    max-width: none;
    width: auto;
    margin-top: 2rem;
  }
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

@media (min-width: 768px) {
  .hero-indicators {
    bottom: 2.5rem;
  }
}

.slideshow-indicator {
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  padding: 0;
  margin: 0;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
}

.slideshow-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slideshow-indicator.active {
  background: var(--orange) !important;
  width: 24px;
}

.slideshow-indicator.bg-gold {
  background-color: var(--orange) !important;
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: none;
  z-index: 20;
}

@media (min-width: 1024px) {
  .hero-scroll-hint {
    display: block;
  }
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Hero Buttons */
.hero-btn-primary,
.hero-btn-secondary {
  position: relative;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.4s var(--ease-out);
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  min-width: 180px;
  border: 1.5px solid transparent;
}

.hero-btn-primary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-btn-primary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.hero-btn-secondary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 122, 46, 0.35);
}

@media (min-width: 640px) {

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 0.8125rem;
    min-width: 200px;
  }
}

@media (min-width: 768px) {

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 1.125rem 2.75rem;
    min-width: 220px;
  }
}

@media (min-width: 1024px) {

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 1.125rem 3rem;
    min-width: 240px;
  }
}

@media (max-width: 639px) {

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 320px;
  }
}

/* =============================================
   SECTION VIEW-ALL BUTTON
   ============================================= */
.section-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.4s var(--ease-out);
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}

.section-view-all-btn:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 122, 46, 0.25);
}

@media (max-width: 767px) {
  .section-view-all-btn {
    margin-top: 2rem;
  }
}

@media (min-width: 768px) {
  .section-view-all-btn {
    padding: 1rem 2.75rem;
    font-size: 0.75rem;
  }
}

/* =============================================
   SOLUTION / EVENT CARDS
   ============================================= */
.events-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.03);
  position: relative;
}

.event-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
  border-color: transparent;
}

.event-card:hover::after {
  transform: scaleX(1);
}

.event-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .event-image-wrapper {
    height: 240px;
  }
}

@media (min-width: 1024px) {
  .event-image-wrapper {
    height: 260px;
  }
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.event-card:hover .event-image {
  transform: scale(1.06);
}

.event-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(232, 122, 46, 0.9);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 10;
}

.event-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.event-title {
  font-family: "Playfair Display", serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .event-title {
    font-size: 1.5rem;
  }
}

.event-cta {
  background: var(--orange);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.4s var(--ease-out);
  border: none;
  font-family: "Poppins", sans-serif;
  text-align: center;
  width: 100%;
  display: block;
}

.event-cta:hover {
  background: var(--orange-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 122, 46, 0.3);
}

/* =============================================
   BLOG / INSIGHT CARDS
   ============================================= */
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.blog-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.blog-card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-6px);
  border-color: transparent;
}

.blog-card:hover::after {
  transform: scaleX(1);
}

.blog-card a {
  display: block;
}

.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .blog-card-image {
    height: 220px;
  }
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .blog-card-content {
    padding: 1.75rem;
  }
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.blog-card-category {
  background: rgba(232, 122, 46, 0.1);
  color: var(--orange);
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.blog-card-date {
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 400;
}

.blog-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .blog-card-title {
    font-size: 1.25rem;
  }
}

.blog-card:hover .blog-card-title {
  color: var(--orange);
}

.blog-card-excerpt {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================
   MOVING GALLERY (Homepage)
   ============================================= */
.gallery-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.gallery-fade-left,
.gallery-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 20;
  pointer-events: none;
}

.gallery-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(248, 249, 250, 0.5) 40%, transparent 100%);
}

.gallery-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, rgba(248, 249, 250, 0.5) 40%, transparent 100%);
}

@media (min-width: 640px) {

  .gallery-fade-left,
  .gallery-fade-right {
    width: 140px;
  }
}

@media (min-width: 768px) {

  .gallery-fade-left,
  .gallery-fade-right {
    width: 180px;
  }
}

@media (min-width: 1024px) {

  .gallery-fade-left,
  .gallery-fade-right {
    width: 200px;
  }
}

.gallery-track {
  display: flex;
  width: calc(320px * 20);
  animation: scrollGallery 90s linear infinite;
  gap: 0;
}

.gallery-item {
  flex: 0 0 300px;
  margin: 0 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-out);
  position: relative;
  background: var(--bg-alt);
  cursor: zoom-in;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
  z-index: 10;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(27, 84, 48, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-md);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.gallery-container:hover .gallery-track {
  animation-play-state: paused;
}

@media (min-width: 640px) {
  .gallery-item {
    flex: 0 0 360px;
    margin: 0 20px;
  }

  .gallery-image-wrapper {
    height: 300px;
  }

  .gallery-track {
    width: calc(380px * 20);
  }
}

@media (min-width: 768px) {
  .gallery-item {
    flex: 0 0 400px;
    margin: 0 24px;
  }

  .gallery-image-wrapper {
    height: 340px;
  }

  .gallery-track {
    width: calc(424px * 20);
  }
}

@media (min-width: 1024px) {
  .gallery-item {
    flex: 0 0 460px;
    margin: 0 28px;
  }

  .gallery-image-wrapper {
    height: 380px;
  }

  .gallery-track {
    width: calc(488px * 20);
  }
}

@media (min-width: 1280px) {
  .gallery-item {
    flex: 0 0 500px;
    margin: 0 32px;
  }

  .gallery-image-wrapper {
    height: 400px;
  }

  .gallery-track {
    width: calc(532px * 20);
  }
}

/* =============================================
   GALLERY PAGE (Filter + Grid)
   ============================================= */
.gallery-filters {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .gallery-filters {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    margin-bottom: 2.5rem;
  }
}

.gallery-filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
  .gallery-filter-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
  }
}

.gallery-filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.gallery-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.gallery-grid-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  border-radius: var(--radius-md);
  background: #eee;
}

.gallery-grid-item:nth-child(3n+1) {
  grid-row: span 1;
}

.gallery-grid-item:nth-child(5n+2) {
  grid-row: span 2;
}

@media (max-width: 639px) {
  .gallery-grid-item:nth-child(5n+2) {
    grid-row: span 1;
  }
}

.gallery-grid-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-grid-item:nth-child(5n+2) .gallery-grid-image-wrapper {
  aspect-ratio: 1/2;
}

@media (max-width: 639px) {
  .gallery-grid-image-wrapper {
    aspect-ratio: 4/5;
  }

  .gallery-grid-item:nth-child(5n+2) .gallery-grid-image-wrapper {
    aspect-ratio: 4/5;
  }
}

.gallery-grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

@media (hover: hover) {
  .gallery-grid-item:hover .gallery-grid-image {
    transform: scale(1.06);
  }

  .gallery-grid-item:hover .gallery-grid-overlay {
    opacity: 1;
  }

  .gallery-grid-item:hover .gallery-zoom-btn {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 61, 34, 0.85) 0%, rgba(20, 61, 34, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  pointer-events: none;
  border-radius: var(--radius-md);
}

.gallery-grid-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.25rem;
}

.gallery-grid-caption {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.gallery-zoom-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .gallery-zoom-btn {
    width: 40px;
    height: 40px;
    top: 1rem;
    right: 1rem;
  }
}

.gallery-zoom-btn svg {
  width: 16px;
  height: 16px;
}

.gallery-zoom-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* =============================================
   GALLERY MODAL
   ============================================= */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  padding: 1.5rem;
}

.gallery-modal.active {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 15, 0.95);
  backdrop-filter: blur(16px);
}

.modal-content {
  position: relative;
  margin: auto;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.modal-close {
  position: absolute;
  top: -0.5rem;
  right: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.modal-close svg {
  width: 1.75rem;
  height: 1.75rem;
}

.modal-close:hover {
  color: white;
  transform: rotate(90deg);
}

.modal-image-container {
  width: 100%;
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 300;
  margin-top: 1.25rem;
  text-align: center;
  font-style: italic;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  padding: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.modal-nav svg {
  width: 1.25rem;
  height: 1.25rem;
}

.modal-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.modal-prev {
  left: 0;
}

.modal-next {
  right: 0;
}

@media (max-width: 768px) {
  .gallery-modal {
    padding: 1rem;
  }

  .modal-nav {
    display: none;
  }

  .modal-close {
    top: 0;
    right: 0;
    padding: 1rem;
  }

  .modal-image-container {
    height: calc(100% - 120px);
  }

  .modal-caption {
    font-size: 0.9375rem;
    margin-top: 1rem;
  }
}

/* =============================================
   TEAM PAGE
   ============================================= */
.team-list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 1.5rem auto 0;
}

@media (min-width: 768px) {
  .team-list {
    margin: 2rem auto 0;
  }
}

.team-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
}

.team-image-wrapper {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--orange);
  background: var(--bg-alt);
  box-shadow: 0 4px 20px rgba(232, 122, 46, 0.12);
  transition: all 0.3s var(--ease-out);
}

.team-card:hover .team-image-wrapper {
  box-shadow: 0 8px 32px rgba(232, 122, 46, 0.2);
  border-color: var(--orange-dark);
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s var(--ease-out);
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

.team-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
}

.team-name {
  font-family: "Playfair Display", serif;
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0 0 0.25rem 0;
}

.team-position {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 400;
  margin: 0;
}

.team-email {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
  transition: color 0.2s ease;
}

.team-email:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.team-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

@media (min-width: 768px) {
  .team-image-wrapper {
    width: 210px;
    height: 210px;
    border-width: 4px;
  }

  .team-name {
    font-size: 1.875rem;
  }

  .team-card {
    gap: 2.5rem;
    padding: 2.75rem 0;
  }
}

@media (max-width: 639px) {
  .team-card {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 2rem 0;
  }

  .team-image-wrapper {
    width: 150px;
    height: 150px;
  }

  .team-name {
    font-size: 1.375rem;
  }

  .team-position {
    font-size: 0.875rem;
  }
}

/* =============================================
   INSIGHT DETAIL CARDS
   ============================================= */
.insight-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
  transition: all 0.4s var(--ease-out);
}

.insight-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.insight-detail-card img {
  min-height: 200px;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

@media (max-width: 767px) {
  .insight-detail-card {
    padding: 1.5rem;
  }

  .insight-detail-card img {
    min-height: 180px;
    max-height: 250px;
  }
}

/* =============================================
   FOOTER
   ============================================= */
.footer-main {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
}

@media (min-width: 768px) {
  .footer-main {
    padding: 4.5rem 0 0;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    padding: 5rem 0 0;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 768px) {
  .footer-content {
    gap: 3.5rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-logo>div {
  margin-bottom: 0 !important;
  margin-left: -0.75rem;
  max-width: 100%;
  height: 5rem;
  width: 12rem;
}

.footer-logo>div img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .footer-logo>div {
    height: 6rem;
    width: 15rem;
  }

  .footer-logo {
    margin-top: -1rem;
  }
}

@media (min-width: 1024px) {
  .footer-logo {
    margin-top: -1.5rem;
  }

  .footer-section {
    align-items: flex-start;
  }
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .footer-tagline {
    margin-top: -0.75rem;
    padding-top: 0;
  }
}

.footer-heading {
  font-family: "Poppins", sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.875rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: var(--orange);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links li a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact li a,
.footer-contact li div {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact li a:hover {
  color: var(--orange);
}

.footer-contact li p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-hours li {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.footer-hours-label {
  color: var(--text-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-hours-time {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 400;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  margin-top: 1.5rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-content {
    flex-direction: row;
    text-align: left;
  }
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 400;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-link {
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--orange);
}

.footer-separator {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* =============================================
   FORMS
   ============================================= */
.submit-btn {
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  transition: all 0.4s var(--ease-out);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.submit-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 122, 46, 0.35);
}

.luxury-input,
.luxury-select,
.luxury-textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(232, 122, 46, 0.35);
  border-radius: 0;
  padding: 12px 0;
  color: white;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.luxury-input:focus,
.luxury-select:focus,
.luxury-textarea:focus {
  outline: none;
  border-color: var(--orange-light);
}

.luxury-input::placeholder,
.luxury-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.luxury-textarea {
  border: 1.5px solid rgba(232, 122, 46, 0.35);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  resize: none;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input,
.form-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232, 122, 46, 0.35);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  border-radius: 0;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-bottom-color: var(--orange);
  border-bottom-width: 2px;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e87a2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.25em 1.25em;
  padding-right: 2rem;
}

.form-select option {
  background-color: var(--green-dark);
  color: white;
}

.form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 122, 46, 0.2);
  color: white;
  padding: 1rem;
  font-size: 0.9375rem;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  border-radius: var(--radius-sm);
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
}

.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-wrapper {
    max-width: 900px;
  }
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e87a2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

select option {
  background-color: var(--green-dark);
  color: white;
}

.tab-trigger {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
}

.tab-trigger.active {
  background-color: var(--orange);
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* =============================================
   SOLUTION DETAIL PAGE
   ============================================= */
.solution-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .solution-hero {
    height: 65vh;
    min-height: 500px;
  }
}

.solution-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 61, 34, 0.2) 0%, rgba(20, 61, 34, 0.45) 50%, rgba(20, 61, 34, 0.85) 100%);
  z-index: 2;
}

.solution-hero .container {
  position: relative;
  z-index: 10;
}

.solution-hero-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-family: "Poppins", sans-serif;
  border-radius: var(--radius-sm);
}

.solution-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .solution-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .solution-hero-title {
    font-size: 3.5rem;
  }
}

.solution-hero-tagline {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .solution-hero-tagline {
    font-size: 1.125rem;
    margin-top: 2rem;
  }
}

.solution-scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(232, 122, 46, 0.5);
  color: var(--orange);
  transition: all 0.3s ease;
  animation: bounceDown 2s ease-in-out infinite;
}

.solution-scroll-btn:hover {
  background: rgba(232, 122, 46, 0.15);
  border-color: var(--orange);
}

@keyframes bounceDown {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(8px);
  }

  60% {
    transform: translateY(4px);
  }
}

.solution-breadcrumbs {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.solution-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.solution-breadcrumb-nav svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.solution-breadcrumb-link {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.solution-breadcrumb-link:hover {
  color: var(--orange);
}

.solution-breadcrumb-current {
  color: var(--orange);
  font-weight: 500;
}

.solution-intro-section {
  padding: 3rem 0 2rem;
  background: var(--bg);
}

@media (min-width: 768px) {
  .solution-intro-section {
    padding: 4rem 0 3rem;
  }
}

.solution-intro-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.solution-intro-accent {
  flex-shrink: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange), var(--orange-light));
  border-radius: 2px;
}

.solution-intro-text {
  font-family: "Playfair Display", serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-primary);
  font-style: italic;
}

@media (min-width: 768px) {
  .solution-intro-text {
    font-size: 1.1875rem;
  }
}

.solution-content-section {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .solution-content-section {
    padding: 3.5rem 0;
  }
}

.solution-section-light {
  background: var(--bg-card);
}

.solution-section-alt {
  background: var(--bg);
}

.solution-content-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .solution-content-block {
    flex-direction: row;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .solution-content-block {
    gap: 4rem;
  }
}

.solution-content-reversed {
  flex-direction: column;
}

@media (min-width: 768px) {
  .solution-content-reversed {
    flex-direction: row-reverse;
  }
}

.solution-content-media {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .solution-content-media {
    flex: 0 0 45%;
    width: 45%;
  }
}

.solution-content-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.solution-content-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

@media (min-width: 768px) {
  .solution-content-image {
    height: 340px;
  }
}

.solution-content-image-wrapper:hover .solution-content-image {
  transform: scale(1.04);
}

.solution-image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--orange), var(--orange-light), var(--orange));
}

.solution-content-text {
  flex: 1;
}

.solution-content-full {
  max-width: 800px;
  margin: 0 auto;
}

.solution-section-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(232, 122, 46, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .solution-section-number {
    font-size: 4rem;
  }
}

.solution-content-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .solution-content-heading {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .solution-content-heading {
    font-size: 2rem;
  }
}

.solution-content-divider {
  width: 48px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 1.25rem;
  border-radius: 1px;
}

.solution-content-paragraph {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .solution-content-paragraph {
    font-size: 1rem;
    line-height: 1.85;
  }
}

.solution-section-header {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .solution-section-header {
    margin-bottom: 3.5rem;
  }
}

.solution-section-label {
  display: block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.75rem;
}

.solution-section-label.text-white-muted {
  color: rgba(232, 122, 46, 0.85);
}

.solution-section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .solution-section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .solution-section-title {
    font-size: 2.5rem;
  }
}

.solution-section-title.text-white {
  color: white;
}

.solution-section-divider {
  width: 48px;
  height: 2px;
  background: var(--orange);
  margin: 0 auto;
  border-radius: 1px;
}

/* Features Section */
.solution-features-section {
  background: linear-gradient(135deg, var(--green-deeper) 0%, var(--green-dark) 40%, var(--green) 100%);
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .solution-features-section {
    padding: 4rem 0;
  }
}

.solution-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .solution-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solution-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.solution-feature-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.solution-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.solution-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 122, 46, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.solution-feature-card:hover::before {
  opacity: 1;
}

.solution-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(232, 122, 46, 0.25);
  border-radius: var(--radius-md);
  color: var(--orange);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.solution-feature-card:hover .solution-feature-icon {
  background: rgba(232, 122, 46, 0.12);
  border-color: var(--orange);
}

.solution-feature-title {
  font-family: "Playfair Display", serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.625rem;
}

.solution-feature-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* Stats */
.solution-stats-section {
  padding: 2.5rem 0;
  background: var(--bg);
}

@media (min-width: 768px) {
  .solution-stats-section {
    padding: 4rem 0;
  }
}

.solution-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .solution-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.solution-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.solution-stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.solution-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.solution-stat-card:hover::after {
  transform: scaleX(1);
}

.solution-stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .solution-stat-number {
    font-size: 2.25rem;
  }
}

.solution-stat-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

/* Quote */
.solution-quote-section {
  padding: 2.5rem 0;
  background: var(--bg-card);
}

@media (min-width: 768px) {
  .solution-quote-section {
    padding: 4rem 0;
  }
}

.solution-quote-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .solution-quote-wrapper {
    padding: 3rem 2rem;
  }
}

.solution-quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: rgba(232, 122, 46, 0.12);
  line-height: 1;
  margin-bottom: -1.5rem;
}

@media (min-width: 768px) {
  .solution-quote-mark {
    font-size: 7rem;
    margin-bottom: -2rem;
  }
}

.solution-quote-text {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
}

@media (min-width: 768px) {
  .solution-quote-text {
    font-size: 1.5rem;
  }
}

.solution-quote-author {
  display: block;
  margin-top: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-style: normal;
}

/* Related Solutions */
.solution-related-section {
  padding: 2.5rem 0;
  background: var(--bg);
}

@media (min-width: 768px) {
  .solution-related-section {
    padding: 4rem 0;
  }
}

.solution-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .solution-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solution-related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: block;
}

.solution-related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-hover);
}

.solution-related-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .solution-related-image {
    height: 260px;
  }
}

.solution-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-related-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 61, 34, 0.5) 0%, transparent 60%);
}

.solution-related-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: white;
  padding: 0.375rem 1rem;
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  border-radius: var(--radius-sm);
}

.solution-related-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .solution-related-content {
    padding: 1.75rem;
  }
}

.solution-related-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.solution-related-card:hover .solution-related-title {
  color: var(--orange-dark);
}

.solution-related-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.solution-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap 0.3s ease;
}

.solution-related-card:hover .solution-related-link {
  gap: 0.75rem;
}

.solution-related-link svg {
  transition: transform 0.3s ease;
}

.solution-related-card:hover .solution-related-link svg {
  transform: translateX(4px);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
}

.stagger-children>* {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0ms;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 80ms;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 160ms;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 240ms;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 320ms;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 400ms;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   MOBILE OVERRIDES
   ============================================= */
@media (max-width: 639px) {
  section[aria-labelledby="hero-heading"] {
    height: 65vh;
    min-height: 420px;
  }

  section[aria-labelledby="hero-heading"] h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    padding: 0 0.5rem;
  }

  section[aria-labelledby="hero-heading"] p {
    font-size: 0.875rem;
    padding: 0 0.5rem;
  }

  header {
    padding: 0;
  }

  header .container {
    padding: 0 1rem;
  }

  #about,
  #vision {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #about .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #about h2 {
    font-size: 1.5rem;
  }

  #packages {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .events-grid {
    gap: 1.25rem;
  }

  .event-image-wrapper {
    height: 200px;
  }

  .event-content {
    padding: 1.25rem;
  }

  .event-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .event-badge {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    font-size: 0.5625rem;
  }

  section[aria-labelledby="destinations-heading"] {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  section[aria-labelledby="destinations-heading"] .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  section[aria-labelledby="destinations-heading"] h2 {
    font-size: 1.5rem;
  }

  .blog-card-image {
    height: 180px;
  }

  .blog-card-content {
    padding: 1.25rem;
  }

  .blog-card-title {
    font-size: 1.0625rem;
  }

  .blog-card-excerpt {
    font-size: 0.8125rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  #testimonials {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .gallery-container {
    padding: 1.5rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }

  .gallery-container:active {
    cursor: grabbing;
  }

  .gallery-container::-webkit-scrollbar {
    display: none;
  }

  .gallery-fade-left,
  .gallery-fade-right {
    display: none;
  }

  .gallery-item {
    flex: 0 0 260px;
    margin: 0 8px;
  }

  .gallery-item:active {
    transform: scale(0.98);
    opacity: 0.9;
  }

  .gallery-image-wrapper {
    height: 220px;
  }

  .gallery-track {
    display: flex;
    width: max-content;
    padding: 0 16px;
  }

  #testimonials h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  button,
  .luxury-button,
  a.bg-gold {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .solution-hero {
    height: 50vh;
    min-height: 350px;
  }

  .solution-hero-title {
    font-size: 1.75rem;
    padding: 0 0.5rem;
  }

  .solution-hero-tagline {
    font-size: 0.9375rem;
    padding: 0 1rem;
  }

  .solution-hero-badge {
    padding: 0.375rem 1.25rem;
    font-size: 0.5625rem;
    margin-bottom: 1rem;
  }

  .solution-scroll-btn {
    width: 40px;
    height: 40px;
    margin-top: 1.5rem;
  }

  .solution-scroll-btn svg {
    width: 20px;
    height: 20px;
  }

  .solution-intro-section {
    padding: 2rem 0 1.5rem;
  }

  .solution-intro-text {
    font-size: 1rem;
  }

  .solution-content-section {
    padding: 2rem 0;
  }

  .solution-content-image {
    height: 220px;
  }

  .solution-section-number {
    font-size: 2.5rem;
  }

  .solution-content-heading {
    font-size: 1.375rem;
  }

  .solution-content-paragraph {
    font-size: 0.875rem;
  }

  .solution-features-section {
    padding: 3rem 0;
  }

  .solution-feature-card {
    padding: 1.5rem;
  }

  .solution-stats-section {
    padding: 3rem 0;
  }

  .solution-stat-card {
    padding: 1.5rem 1rem;
  }

  .solution-stat-number {
    font-size: 1.75rem;
  }

  .solution-quote-section {
    padding: 3rem 0;
  }

  .solution-quote-mark {
    font-size: 4rem;
    margin-bottom: -1rem;
  }

  .solution-quote-text {
    font-size: 1.0625rem;
  }

  .solution-related-section {
    padding: 3rem 0;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px;
  }
}

.luxury-button {
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  background: transparent;
  border: 1.5px solid var(--orange);
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: var(--orange);
}

.luxury-button:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 122, 46, 0.25);
}

/* =============================================
   MOBILE RESPONSIVE ADJUSTMENTS FOR SECONDARY PAGES
   ============================================= */
@media (max-width: 767px) {
  .py-16 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .py-20 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .py-24 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:py-16 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:py-24 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mb-12 {
    margin-bottom: 2rem;
  }

  .md\:mb-16 {
    margin-bottom: 2.5rem;
  }

  .mt-12 {
    margin-top: 2rem;
  }

  .md\:mt-16 {
    margin-top: 2.5rem;
  }

  .mt-8 {
    margin-top: 1.5rem;
  }

  .md\:mt-12 {
    margin-top: 2rem;
  }

  /* Adjust hero section height for mobile */
  .h-\[40vh\] {
    height: 35vh;
  }

  .md\:h-\[50vh\] {
    @media (min-width: 768px) {
      height: 50vh;
    }
  }
}

/* =============================================
   ENHANCED SOLUTIONS GRID
   ============================================= */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  color: inherit;
}

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

.solution-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.solution-card:hover .solution-image {
  transform: scale(1.08);
}

.solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 122, 46, 0.15) 0%, rgba(42, 110, 63, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.solution-card:hover .solution-overlay {
  opacity: 1;
}

.solution-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--orange);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 5;
  transition: transform 0.3s var(--ease-out);
}

.solution-card:hover .solution-badge {
  transform: scale(1.05);
}

.solution-content {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-number {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.2;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.solution-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  transition: color 0.3s var(--ease-out);
}

.solution-card:hover .solution-title {
  color: var(--orange);
}

.solution-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s var(--ease-out);
}

.solution-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}

.solution-card:hover .solution-cta {
  gap: 0.75rem;
}

.solution-card:hover .solution-arrow {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .solution-content {
    padding: 1.5rem 1.25rem;
  }

  .solution-title {
    font-size: 1.25rem;
  }

  .solution-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

/* =============================================
   INSIGHTS GRID - ENHANCED STANDARD DESIGN
   ============================================= */
.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  color: inherit;
}

.insight-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Category-specific border top accent */
.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.insight-card-innovation::before {
  background: var(--orange);
}

.insight-card-education::before {
  background: #3b82f6;
}

.insight-card-environment::before {
  background: var(--green);
}

.insight-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.insight-card:hover .insight-image img {
  transform: scale(1.08);
}

.insight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 122, 46, 0.05) 0%, rgba(42, 110, 63, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}

.insight-card:hover .insight-overlay {
  opacity: 1;
}

.insight-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}

.insight-category {
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.insight-category-innovation {
  background: rgba(232, 122, 46, 0.15);
  color: var(--orange);
}

.insight-category-education {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.insight-category-environment {
  background: rgba(42, 110, 63, 0.15);
  color: var(--green);
}

.insight-date {
  color: var(--text-secondary);
  font-weight: 500;
}

.insight-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
  line-height: 1.3;
  transition: color 0.3s var(--ease-out);
}

.insight-card-innovation:hover .insight-title {
  color: var(--orange);
}

.insight-card-education:hover .insight-title {
  color: #3b82f6;
}

.insight-card-environment:hover .insight-title {
  color: var(--green);
}

.insight-excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: auto;
  padding-bottom: 1rem;
}

.insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.insight-read-time {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.insight-arrow {
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.insight-card-innovation:hover .insight-arrow {
  transform: translateX(6px);
  color: var(--orange);
}

.insight-card-education:hover .insight-arrow {
  transform: translateX(6px);
  color: #3b82f6;
}

.insight-card-environment:hover .insight-arrow {
  transform: translateX(6px);
  color: var(--green);
}

@media (max-width: 767px) {
  .insight-card {
    border-radius: var(--radius-md);
  }

  .insight-content {
    padding: 1.5rem;
  }

  .insight-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .insight-excerpt {
    font-size: 0.875rem;
    margin-bottom: auto;
    padding-bottom: 0.75rem;
  }

  .insight-footer {
    padding-top: 0.75rem;
  }
}