/* Yarden Schweppe - Custom CSS */
/* No Tailwind dependency - Pure CSS */

:root {
  /* Colors */
  --color-primary: #6B7C5E;
  --color-primary-foreground: hsl(40, 20%, 97%);
  --color-secondary: hsl(35, 40%, 50%);
  --color-secondary-foreground: hsl(155, 40%, 18%);
  --color-background: hsl(40, 20%, 97%);
  --color-foreground: hsl(220, 30%, 15%);
  --color-card: hsl(40, 20%, 95%);
  --color-card-foreground: hsl(220, 30%, 15%);
  --color-accent: hsl(215, 50%, 20%);
  --color-accent-foreground: hsl(40, 20%, 97%);
  --color-muted: hsl(155, 10%, 90%);
  --color-muted-foreground: hsl(220, 10%, 40%);
  --color-destructive: hsl(0, 60%, 40%);
  --color-destructive-foreground: hsl(0, 0%, 98%);
  --color-border: hsl(155, 10%, 85%);
  --color-input: hsl(155, 10%, 85%);
  --color-ring: #6B7C5E;
  .text-white {
    color: white!important;
  }
  /* Fonts */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", sans-serif;
  
  /* Spacing */
  --radius: 0.25rem;
}

/* ============================================
   VALUE PILLARS - Align titles at same horizontal position
   ============================================ */
#value-pillars .value-pillars-grid {
  display: grid;
  align-items: start !important;
}

#value-pillars .value-pillar-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

#value-pillars .value-pillar-title {
  min-height: 2rem !important;
  height: 2rem !important;
  display: flex !important;
  align-items: flex-start !important;
 
  margin-top: 0 !important;
  padding-top: 0 !important;
  line-height: 1.2 !important;
}

#value-pillars .value-pillar-description {
  margin-top: 0 !important;
}

/* ============================================
   ABOUT: FOUNDER BIO (Text left, image right - image spans all paragraphs)
   ============================================ */
#about .founder-bio-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

#about .founder-bio-content {
  flex: 1;
  min-width: 0;
}

#about .founder-bio-header__text {
  margin-bottom: 1.5rem;
}

#about .founder-bio-image {
  width: 16rem;
  min-width: 16rem;
  height: auto;
  border-radius: 9999px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  align-self: center;
  margin-left: 2rem;
  margin-right: 2rem;
}

#about .founder-bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1;
}

@media (max-width: 768px) {
  #about .founder-bio-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  #about .founder-bio-image {
    width: 10rem;
    min-width: 10rem;
    order: -1;
    margin-bottom: 1.5rem;
  }
  
  #about .founder-bio-header__text {
    text-align: center;
  }
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.flex {
  display: flex;
}

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

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

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

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

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

.grid {
  display: grid;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

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

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-12 {
  bottom: 3rem;
}

.bottom-10 {
  bottom: 2.5rem;
}

.bottom-8 {
  bottom: 2rem;
}

.right-8 {
  right: 2rem;
}

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

.-left-10 {
  left: -2.5rem;
}

.-right-10 {
  right: -2.5rem;
}

.top-full {
  top: 100%;
}

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

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

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

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

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

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-6 {
  height: 1.5rem;
}

.h-5 {
  height: 1.25rem;
}

.h-4 {
  height: 1rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-0\.5 {
  height: 0.125rem;
}

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

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

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

.max-w-3xl {
  max-width: 48rem;
}

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

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

.w-12 {
  width: 3rem;
}

.w-3 {
  width: 0.75rem;
}

.w-6 {
  width: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-\[500px\] {
  width: 500px;
}

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

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.pb-14{

  padding-bottom: 3.5rem;
}
.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-12{
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}

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

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

.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.mb-14{
  margin-bottom: 3.5rem;
}
.mb-16{
  margin-bottom: 4rem;
}
.mb-20{
  margin-bottom: 5rem;
}
.mb-22{
  margin-bottom: 5.5rem;
}
.mb-24{
  margin-bottom: 6rem;
}

.mb-26{
  margin-bottom: 6.5rem;
}

.mr-2{
  margin-right: 0.5rem;
}
.mr-4{
  margin-right: 1rem;
}
.mr-6{
  margin-right: 1.5rem;
}
.mr-8{
  margin-right: 2rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-4{
  margin-left: 1rem;
}
.ml-6{
  margin-left: 1.5rem;
}
.mt-1 {
  margin-top: 0.25rem;
}

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

.mt-2\.5 {
  margin-top: 0.625rem;
}

.mt-4 {
  margin-top: 1rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 3rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-20 {
  gap: 5rem;
}

.gap-32 {
  gap: 8rem;
}

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

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

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

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

.space-y-10 > * + * {
  margin-top: 2.5rem;
}

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

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

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

.text-base {
  font-size: 1.3rem;
  line-height: 1.5rem;
}

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

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

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

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

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

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

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

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

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

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

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

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

.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

.leading-tight {
  line-height: 1.25;
}
.mb-8 {
  margin-bottom: 2rem;
}
.text-4xl{
  font-size: 2.80rem!important;
}
.leading-relaxed {
  
  margin-right: 19px;
  line-height: 1.75;
}

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.text-white {
  color: white;
}

.text-primary {
  color: var(--color-primary);
}

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

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

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

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

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

.text-destructive {
  color: var(--color-destructive);
}

.text-blue-600 {
  color: #2563eb;
}

.text-green-600 {
  color: #16a34a;
}

.text-yellow-600 {
  color: #ca8a04;
}

.text-red-700 {
  color: #b91c1c;
}

.text-emerald-700 {
  color: #047857;
}

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

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

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

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

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

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

.border {
  border-width: 1px;
}

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

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

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

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

.border-secondary {
  border-color: var(--color-secondary);
}

.border-primary\/20 {
  border-color: rgba(22, 78, 65, 0.2);
}

.border-input {
  border-color: var(--color-input);
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

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

.rounded-none {
  border-radius: 0;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.opacity-80 {
  opacity: 0.8;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.hidden {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

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

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

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

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

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

.hover\:opacity-80:hover {
  opacity: 0.8;
}

.hover\:opacity-90:hover {
  opacity: 0.9;
}

.hover\:text-secondary:hover {
  color: var(--color-secondary);
}

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

.hover\:bg-secondary\/90:hover {
  background-color: rgba(180, 130, 70, 0.9);
}

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

.hover\:text-accent-foreground:hover {
  color: var(--color-accent-foreground);
}

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

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:visible {
  visibility: visible;
}

.group:hover .group-hover\:bg-primary {
  background-color: var(--color-primary);
}

.group:hover .group-hover\:text-white {
  color: white;
}

.group:hover .group-hover\:bg-transparent {
  background-color: transparent;
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus-visible\:ring-1:focus-visible {
  box-shadow: 0 0 0 1px var(--color-ring);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-1:focus {
  box-shadow: 0 0 0 1px var(--color-ring);
}

/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(247, 245, 240, 0.7);
  transition: all 0.3s ease;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

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

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

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

#navbar.scrolled {
  background-color: rgba(247, 245, 240, 0.95);
  border-bottom: 1px solid var(--color-border);
  padding-top: 1rem;
  padding-bottom: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Navbar Links */
#navbar a {
  text-decoration: none;
  color: inherit;
}

/* Navbar Dropdown Arrow */
#navbar .group > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

#navbar .group > a svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

#navbar .group:hover > a svg {
  transform: rotate(180deg);
}

#navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#navbar li {
  margin: 0;
  padding: 0;
}
.p-5{
  padding: 0.5rem!important;
}
/* Navbar Dropdown */
#navbar .group {
  position: relative;
}

#navbar .group > div {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  width: 250px;
  max-width: calc(100vw - 2rem);
  background-color: white;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 50;
}

/* Ensure dropdown doesn't overflow on smaller screens */
@media (max-width: 1024px) {
  #navbar .group > div {
    left: auto;
    right: 0;
    transform: none;
    width: 400px;
  }
}

@media (max-width: 640px) {
  #navbar .group > div {
    width: calc(100vw - 2rem);
  }
}

#navbar .group:hover > div {
  opacity: 1;
  visibility: visible;
}

/* Dropdown Content */
#navbar .group > div ul {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

#navbar .group > div li {
  margin: 0;
}

#navbar .group > div li.col-span-2 {
  grid-column: span 2;
}

/* Dropdown Links */
#navbar .group > div a {
  display: block;
  padding: 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.15s;
  text-decoration: none;
  color: var(--color-foreground);
}

#navbar .group > div a:hover {
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
}

/* Dropdown Text Styling */
#navbar .group > div .text-sm {
  font-size: 0.875rem;
}

#navbar .group > div .text-lg {
  font-size: 1.125rem;
}

#navbar .group > div .font-medium {
  font-weight: 500;
}

#navbar .group > div .text-muted-foreground {
  color: var(--color-muted-foreground);
}

/* Dropdown Gradient Box */
#navbar .group > div a.bg-gradient-to-b {
  padding: 1.5rem;
  background: linear-gradient(to bottom, #6B7C5E, var(--color-primary));
  color: white;
  border-radius: 0.375rem;
}

#navbar .group > div a.bg-gradient-to-b:hover {
  opacity: 0.9;
  background: linear-gradient(to bottom, #6B7C5E, var(--color-primary));
}

#navbar .group > div a.bg-gradient-to-b .text-lg {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: white;
}

#navbar .group > div a.bg-gradient-to-b .text-sm {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Ensure dropdown is above other content */
#navbar .group > div {
  pointer-events: auto;
}

/* Services Dropdown List Styling */
#navbar .services-dropdown {
  width: auto;
  min-width: 320px;
  max-width: 380px;
  left: 0;
  transform: none;
}

#navbar .services-dropdown ul {
  display: block !important;
  grid-template-columns: none !important;
  padding: 0 !important;
}

#navbar .services-dropdown li {
  display: block !important;
}

#navbar .service-dropdown-link {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

#navbar .service-dropdown-link:hover {
  background: transparent !important;
  color: inherit !important;
}

#navbar .service-dropdown-link:hover div {
  color: #4A5A3E !important;
}

/* Fix dropdown positioning on smaller screens */
@media (max-width: 768px) {
  #navbar .group > div {
    width: 100%;
    left: 0;
    right: 0;
  }
}

/* Mobile Menu Button */
#mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-primary);
}

#mobile-menu-toggle svg {
  display: block;
}

#close-icon.hidden {
  display: none;
}

#close-icon:not(.hidden) ~ #menu-icon,
#menu-icon:has(~ #close-icon:not(.hidden)) {
  display: none;
}

/* SVG Icons */
svg {
  display: inline-block;
  vertical-align: middle;
}

svg[stroke="currentColor"] {
  stroke: currentColor;
}

svg[stroke-width="2"] {
  stroke-width: 2;
}

/* Navbar Logo */
#navbar img {
  height: auto;

}

/* Navbar Text */
#navbar .text-lg {
  font-size: 1.125rem;
}

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

/* Ensure navbar is on top - already defined above, but ensure it's correct */

/* Body padding to account for fixed navbar */
body {
  padding-top: 0;
}

/* Navbar spacing */
#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero > .relative {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#hero .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#hero .max-w-4xl {
  text-align: center;
  margin: 0 auto;
}

#hero h1,
#hero h3,
#hero p {
  text-align: center;
}

#hero > div > div {
  text-align: center;
}

#hero > div > div > * {
  text-align: center;
}

.hero-slide {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-indicator {
  cursor: pointer;
  transition: all 0.5s;
}

/* Grid System */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.col-span-2 {
  grid-column: span 2 / span 2;
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:inline {
    display: inline;
  }
  
  .sm\:block {
    display: block;
  }

  .sm\:bottom-12 {
    bottom: 3rem;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }
  
  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  
  .md\:h-12 {
    height: 3rem;
  }
  
  .md\:h-8 {
    height: 2rem;
  }
  
  .md\:w-8 {
    width: 2rem;
  }
  
  .md\:block {
    display: block;
  }
  
  .md\:hidden {
    display: none;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:p-10 {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:col-start-1 {
    grid-column-start: 1;
  }
  
  .lg\:col-start-2 {
    grid-column-start: 2;
  }
  
  .lg\:grid-flow-dense {
    grid-auto-flow: dense;
  }
  
  .lg\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  /* Desktop: Reset service card styling */
  #services .service-content-wrapper {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  #services .service-text-content {
    padding: 0 !important;
  }

  /* Desktop: Hide mobile image, show desktop image */
  #services .service-image-mobile {
    display: none !important;
  }

  #services .service-image-desktop {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Ensure Israel service images appear on the right side */
  #service-israel .grid.lg\:grid-cols-2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 4rem !important;
    align-items: start !important;
  }

  #service-israel .service-content-wrapper {
    grid-column: 1 !important;
  }

  #service-israel .service-image-desktop {
    grid-column: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-self: start !important;
  }

  /* Ensure Greece service images appear on the left side */
  #service-greece .grid.lg\:grid-cols-2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 4rem !important;
    align-items: start !important;
  }

  #service-greece .service-content-wrapper {
    grid-column: 2 !important;
  }

  #service-greece .service-image-desktop {
    grid-column: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-self: start !important;
  }

  /* Ensure Belgium service images appear on the right side (like Israel) */
  #service-belgium .grid.lg\:grid-cols-2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 4rem !important;
    align-items: start !important;
  }

  #service-belgium .service-content-wrapper {
    grid-column: 1 !important;
  }

  #service-belgium .service-image-desktop {
    grid-column: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-self: start !important;
  }

  /* Ensure Hong Kong service images appear on the left side (like Greece) */
  #service-hongkong .grid.lg\:grid-cols-2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 4rem !important;
    align-items: start !important;
  }

  #service-hongkong .service-content-wrapper {
    grid-column: 2 !important;
  }

  #service-hongkong .service-image-desktop {
    grid-column: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-self: start !important;
  }

  /* Ensure grid layout works correctly on desktop */
  @media (min-width: 1024px) {
    #services > div[id^="service-"] > .container > .grid {
      display: grid !important;
      flex-direction: unset !important;
    }

    #services > div[id^="service-"] > .container > .grid.lg\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
  }

  /* Greece: Align first image with title */
  #services .greece-images-container {
    align-self: flex-start !important;
    margin-top: 0 !important;
  }



  /* Belgium: Align first image with title */
  #services #service-belgium .grid {
    align-items: flex-start !important;
  }
  
  #services .belgium-images-container {
    align-self: flex-start !important;
 
  }

  /* Service Testimonials Animation */
  #services .service-testimonials-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  }

  #services .service-testimonials-content.hidden {
    max-height: 0 !important;
    opacity: 0 !important;
    display: none !important;
    visibility: hidden !important;
  }

  /* Ensure testimonials are hidden by default on mobile */
  #services .service-testimonials-content {
    display: none;
  }

  #services .service-testimonials-content:not(.hidden) {
    display: grid;
  }

  #services .service-testimonials-toggle {
    cursor: pointer;
    font-family: inherit;
  }

  #services .service-testimonials-toggle svg {
    transition: transform 0.3s ease;
  }

  #services .service-testimonials-toggle:hover svg {
    transform: translateX(2px);
  }

  /* Service Bottom Image - 9:16 aspect ratio (portrait) when testimonials are open */
  #services .service-bottom-image {
    transition: height 0.3s ease-out, aspect-ratio 0.3s ease-out, margin 0.3s ease-out;
  }

  #services .service-bottom-image.testimonials-open {
    height: auto !important;
    aspect-ratio: 9 / 16 !important;
  }

  #services .service-bottom-image.testimonials-open img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: height 0.3s ease-out;
  }

  /* Override specific height classes when testimonials are open */
  #services .service-bottom-image.testimonials-open.h-\[555px\] {
    height: auto !important;
  }

  #services .service-bottom-image.testimonials-open.h-\[500px\] {
    height: auto !important;
  }

  /* Smooth transition for service-text-content to prevent jumps */
  #services .service-text-content {
    transition: margin-top 0.3s ease-out;
  }

  /* Service Expertise Content Animation (Israel) */
  #services .service-expertise-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  }

  #services .service-expertise-content.hidden {
    max-height: 0 !important;
    opacity: 0 !important;
    display: none !important;
    visibility: hidden !important;
  }

  #services .service-expertise-content:not(.hidden) {
    display: block;
    margin-bottom: 2rem;
  }

  #services .service-read-more-israel svg,
  #services .service-read-more-greece svg,
  #services .service-read-more-belgium svg,
  #services .service-read-more-hongkong svg {
    transition: transform 0.3s ease;
  }

  /* Second Image for Israel, Greece, Belgium and Hong Kong - Fade animation */
  #services .service-second-image-israel,
  #services .service-second-image-greece,
  #services .service-second-image-belgium,
  #services .service-second-image-hongkong {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
  }

  #services .service-second-image-israel:not(.hidden),
  #services .service-second-image-greece:not(.hidden),
  #services .service-second-image-belgium:not(.hidden),
  #services .service-second-image-hongkong:not(.hidden) {
    opacity: 1;
  }

  /* Service Expertise Content Animation (Greece, Belgium and Hong Kong) */
  #services .service-expertise-content-greece,
  #services .service-expertise-content-belgium,
  #services .service-expertise-content-hongkong {
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  }

  #services .service-expertise-content-greece.hidden,
  #services .service-expertise-content-belgium.hidden,
  #services .service-expertise-content-hongkong.hidden {
    max-height: 0 !important;
    opacity: 0 !important;
    display: none !important;
    visibility: hidden !important;
  }

  #services .service-expertise-content-greece:not(.hidden),
  #services .service-expertise-content-belgium:not(.hidden),
  #services .service-expertise-content-hongkong:not(.hidden) {
    display: block;
    margin-bottom: 2.5rem;
  }

  /* All Testimonials Section */
  #testimonials .all-testimonials-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    display: none;
  }

  #testimonials .all-testimonials-content.hidden {
    max-height: 0 !important;
    opacity: 0 !important;
    display: none !important;
    visibility: hidden !important;
  }

  #testimonials .all-testimonials-content:not(.hidden) {
    display: grid;
  }

  #testimonials .all-testimonials-toggle svg {
    transition: transform 0.3s ease;
  }

  /* Testimonials Cards - Ensure 3 columns on all screen sizes */
  #testimonials .grid.grid-cols-1.sm\:grid-cols-3 > div {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  @media (min-width: 640px) {
    #testimonials .grid.grid-cols-1.sm\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  /* Desktop: Value Pillars - Reset to left alignment */
  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 > div {
    text-align: left !important;
    align-items: flex-start !important;
  }
  
  /* Value Pillars - Align all titles at same horizontal position */
  #value-pillars .value-pillars-grid {
    align-items: start !important;
  }
  
  #value-pillars .value-pillar-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    height: 100% !important;
  }
  
  #value-pillars .value-pillar-title {
    min-height: 2rem !important;
    height: 2rem !important;
    display: flex !important;
    align-items: flex-start !important;
  
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  #value-pillars .value-pillar-description {
    margin-top: 0 !important;
  }

  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 .p-3.rounded-full {
    margin: 0 0 1rem 0 !important;
  }



  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 p.value-pillar-description {
    text-align: left !important;
  }
}

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

.from-black\/50 {
  --tw-gradient-from: rgba(0, 0, 0, 0.5);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.via-black\/45 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.45), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.to-black\/60 {
  --tw-gradient-to: rgba(0, 0, 0, 0.6);
}

.from-primary\/50 {
  --tw-gradient-from: rgba(22, 78, 65, 0.5);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(22, 78, 65, 0));
}

.to-primary {
  --tw-gradient-to: var(--color-primary);
}
.left-12{
  padding-left: 12px;
}
.text-white\/75 {
  color: rgba(255, 255, 255, 0.75);
}

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

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

.text-primary\/80 {
  color: rgba(22, 78, 65, 0.8);
}

.bg-background\/70 {
  background-color: rgba(247, 245, 240, 0.7);
}

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

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

.bg-primary\/10 {
  background-color: rgba(22, 78, 65, 0.1);
}

.bg-primary\/8 {
  background-color: rgba(22, 78, 65, 0.08);
}

.bg-primary\/5 {
  background-color: rgba(22, 78, 65, 0.05);
}

.bg-secondary\/10 {
  background-color: rgba(180, 130, 70, 0.1);
}

.border-l-4 {
  border-left-width: 4px;
}

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

.border-primary\/20 {
  border-color: rgba(22, 78, 65, 0.2);
}

.border-primary\/10 {
  border-color: rgba(22, 78, 65, 0.1);
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-border\/40 {
  border-color: rgba(214, 211, 209, 0.4);
}

.border-border\/50 {
  border-color: rgba(214, 211, 209, 0.5);
}

.tracking-\[0\.35em\] {
  letter-spacing: 0.35em;
}

.grayscale-\[20\%\] {
  filter: grayscale(20%);
}

.sepia-\[10\%\] {
  filter: sepia(10%);
}

.scroll-mt-20 {
  scroll-margin-top: 5rem;
}

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

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

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-input);
  background-color: var(--color-background);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.15s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--color-ring);
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Button Styles */
a.inline-flex.items-center {
  text-decoration: none;
  cursor: pointer;
}

/* Mobile Menu */
#mobile-menu.hidden {
  display: none;
}

#close-icon.hidden {
  display: none;
}

#close-icon:not(.hidden) ~ #menu-icon {
  display: none;
}

/* Additional Utilities */
.pb-12 {
  padding-bottom: 3rem;
}

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

.pt-6 {
  padding-top: 1.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}
.ml-8{
  margin-left: 2rem;
}
/* Footer */
footer {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* Footer Social Media Icons */
footer a[aria-label] svg {
  fill: hsl(155, 40%, 18%) !important;
  transition: fill 0.3s ease;
}

footer a[aria-label]:hover svg {
  fill: hsl(35, 40%, 50%) !important;
}

@media (max-width: 768px) {
  footer {
    background-position: center center !important;
    background-size: cover !important;
  }
}

/* WordPress Specific */
.wp-block-group {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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


.rounded-30{
  border-radius: 30px!important;
}
.text-small  {
  font-size: 0.675rem!important;
}

/* Service Read More Styles */
.service-expanded-content {
  animation: fadeIn 0.3s ease-in;
}

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

.service-read-more-btn {
  font-family: inherit;
}

/* Office Location Pills - Modern Pill/Bulb Design */
.office-location-pill {
  margin-bottom: 10px;
  display: block;
  width: 100%;
  background: rgba(107, 124, 94, 0.08);
  border: 1px solid rgba(107, 124, 94, 0.15);
  border-radius: 57px;
  padding: 1rem 3rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.office-location-pill:hover {
  background: rgba(107, 124, 94, 0.18);
  border-color: rgba(107, 124, 94, 0.4);
  box-shadow: 0 6px 16px rgba(107, 124, 94, 0.15);
  transform: translateY(-3px);
  will-change: transform;
}

.office-location-pill:hover p:first-child {
  color: hsl(155, 40%, 18%);
}

.office-location-pill:hover p:last-child {
  color: hsl(155, 30%, 20%);
}

.office-location-pill p:first-child {
  margin-bottom: 0.25rem;
}

.office-location-pill p:last-child {
  margin-bottom: 0;
}
.justify-self-center{
  justify-self: center!important;
}
/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================
   All mobile styles below - Desktop CSS remains unchanged above
   ============================================ */

@media (max-width: 768px) {
  /* Container adjustments */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Navbar mobile adjustments */
  #navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  #navbar .container {
    padding: 0 1rem;
  }

  #navbar img {
    max-height: 2.5rem;
  }

  #mobile-menu {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    animation: slideDown 0.3s ease-out;
    background: hsl(0, 0%, 98%) !important;
    backdrop-filter: blur(10px) !important;
  }

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

  /* Mobile menu styling */
  #mobile-menu .flex.flex-col {
    gap: 0.5rem !important;
  }

  /* Main menu links (Home, About, Contact) */
  #mobile-menu > .flex.flex-col > a {
    color: hsl(155, 40%, 18%) !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    transition: all 0.3s ease !important;
    padding: 0.75rem !important;
    border-radius: 0.375rem !important;
  }

  #mobile-menu > .flex.flex-col > a:hover {
    color: hsl(35, 40%, 50%) !important;
    background: hsl(155, 10%, 97%) !important;
    transform: translateX(4px) !important;
  }

  /* Mobile Services Dropdown Button */
  #mobile-services-toggle {
    color: hsl(155, 40%, 18%) !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    transition: all 0.3s ease !important;
    padding: 0.75rem !important;
    border-radius: 0.375rem !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    text-align: left !important;
  }

  #mobile-services-toggle:hover {
    color: hsl(35, 40%, 50%) !important;
    background: hsl(155, 10%, 97%) !important;
  }

  #mobile-services-toggle svg {
    transition: transform 0.3s ease !important;
  }

  .mobile-services-dropdown {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Space between service items */
  #mobile-services-content > * + * {
    margin-top: 0.5rem !important;
  }

  /* First item spacing */
  #mobile-services-content > *:first-child {
    margin-top: 0 !important;
  }

  /* Services dropdown container in mobile */
  #mobile-services-content {
    background: hsl(155, 10%, 97%) !important;
    border-radius: 0.5rem !important;
    padding: 1rem 1rem 1rem 1.25rem !important;
    margin: 0.5rem 0 !important;
    border: none !important;
    border-left: 3px solid #6b7c5e !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    animation: slideDownFade 0.3s ease-out !important;
  }

  @keyframes slideDownFade {
    from {
      opacity: 0;
      transform: translateY(-10px);
      max-height: 0;
    }
    to {
      opacity: 1;
      transform: translateY(0);
      max-height: 500px;
    }
  }

  #mobile-services-content.hidden {
    display: none !important;
  }

  #mobile-services-content .text-sm {
    color: hsl(35, 40%, 50%) !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 0.75rem !important;
  }

  #mobile-services-content a {
    display: block !important;
    padding: 0.75rem !important;
    margin: 0.25rem 0 !important;
    background: white !important;
    border-radius: 0.375rem !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    color: hsl(155, 40%, 18%) !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
  }

  #mobile-services-content a:hover {
    background: hsl(155, 40%, 18%) !important;
    color: white !important;
    transform: translateX(8px) !important;
    border-color: hsl(155, 40%, 18%) !important;
    box-shadow: 0 2px 8px rgba(22, 78, 65, 0.2) !important;
  }

  /* Add spacing between sections in mobile menu */
  #mobile-menu > .flex.flex-col > a:last-child {
    margin-top: 0.5rem !important;
  }

  /* Ensure testimonials content is hidden by default on mobile */
  #services .service-testimonials-content.hidden {
    display: none !important;
    visibility: hidden !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
  }

  #services .service-testimonials-content:not(.hidden) {
    display: grid;
  }

  /* Book button in mobile menu - full width and white text */
  #mobile-menu > .flex.flex-col > a[href*="wa.me"] {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 1rem !important;
    color: white !important;
  }

  #mobile-menu > .flex.flex-col > a[href*="wa.me"]:hover {
    color: white !important;
  }

  /* Mobile menu padding */
  #mobile-menu {
    padding: 1.25rem 1rem !important;
  }

  /* Navbar Mobile Logo Text */
  .navbar-mobile-logo-text {
    font-family: 'Playfair Display', Georgia, serif !important;
    color: hsl(155, 40%, 18%) !important;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-left: 0.5rem;
  }

  .navbar-mobile-logo-line-1 {
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    line-height: 1.1 !important;
    margin: 0;
    padding: 0;
  }
  .navbar-mobile-logo-line-3 {
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    margin: 0;
    padding: 0;
  }
  .navbar-mobile-logo-line-2 {
    font-size: 0.575rem !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    margin: 0;
    padding: 0;
  }

  /* Hero section mobile */
  #hero {
    min-height: 70vh;
    height: auto;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #hero .container {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #hero .max-w-4xl {
    padding: 0 1rem;
    margin: 0 auto !important;
    text-align: center !important;
  }

  #hero h1 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }

  #hero h3 {
    font-size: 0.625rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 0.75rem !important;
    text-align: center !important;
  }

  #hero h4 {
    font-size: 1.125rem !important;
   
    margin-bottom: 0.75rem !important;
    text-align: center !important;
  }


  #hero p {
    font-size: 1.875rem !important;
    line-height: 1.5 !important;
    margin-bottom:-0.75rem !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #hero > div > div {
    text-align: center !important;
  }

  #hero > div > div > * {
    text-align: center !important;
  }

  #hero .space-y-6 > * + * {
    margin-top: 1rem !important;
  }

  #hero a.inline-flex {
    font-size: 0.875rem !important;
    padding: 0.75rem 1.5rem !important;
    margin: 0 auto !important;
  }

  #hero > div {
    text-align: center !important;
  }

  /* Typography mobile adjustments */
  .text-5xl {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .text-6xl {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }

  .text-7xl {
    font-size: 3rem !important;
    line-height: 1.2 !important;
  }

  .text-4xl {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }

  .text-3xl {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
  }

  .text-2xl {
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
  }

  .text-xl {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .text-lg {
    font-size: 0.9375rem !important;
    line-height: 1.5 !important;
  }

  /* Spacing mobile adjustments */
  .py-24 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .px-6 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-8{
    padding-left: 2rem !important;
  }

  .px-10 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .p-10 {
    padding: 1.25rem !important;
  }

  .p-8 {
    padding: 1rem !important;
  }

  .gap-16 {
    gap: 1.5rem !important;
  }

  .gap-8 {
    gap: 1rem !important;
  }

  /* Grid mobile - stack columns */
  .grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  /* Keep grid layout on desktop even in mobile media query */
  @media (min-width: 1024px) {
    .lg\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
  }

  .lg\:grid-cols-4 {
    grid-template-columns: 1fr !important;
  }

  .md\:grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  .col-span-2 {
    grid-column: span 1 !important;
  }

  /* About section mobile */
  #about {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  #about .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  #about .grid {
    gap: 1.5rem !important;
  }

  /* About image container */
  #about .relative:first-child {
    order: 1 !important;
    margin-bottom: 1rem !important;
  }

  #about .h-\[600px\] {
    height: 220px !important;
    border-radius: 0.125rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  }

  #about .absolute.-top-10 {
    display: none !important;
  }

  #about .absolute.bottom-10 {
    display: none !important;
  }

  /* About text container */
  #about .space-y-8 {
    order: 2 !important;
    margin-top: 0 !important;
    background: white !important;
    padding: 1.5rem !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  }

  #about .space-y-8 > div:first-child {
    margin-bottom: 1rem !important;
  }

  /* About heading */
  #about h4 {
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 0.5rem !important;
  }

  #about h2 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }

  #about h2 br {
    display: none !important;
  }

  /* About paragraphs */
  #about .space-y-6 {
    margin-top: 1rem !important;
  }

  #about .space-y-6 > * + * {
    margin-top: 1rem !important;
  }

  #about p {
    font-size: 0.9375rem !important;
    line-height: 1.7 !important;
    color: hsl(220, 10%, 40%) !important;
  }

  #about strong {
    color: hsl(155, 40%, 18%) !important;
    font-weight: 600 !important;
  }

  /* About statistics grid */
  #about .grid.grid-cols-2 {
    margin-top: 1.25rem !important;
    padding-top: 1.25rem !important;
    gap: 1rem !important;
    border-top: 1px solid rgba(214, 211, 209, 0.4) !important;
  }

  #about .grid.grid-cols-2 > div {
    text-align: center !important;
    padding: 1rem !important;
    background: hsl(155, 10%, 97%) !important;
    border-radius: 0.375rem !important;
    transition: all 0.3s ease !important;
  }

  #about .grid.grid-cols-2 > div:hover {
    background: hsl(155, 20%, 95%) !important;
    transform: translateY(-2px) !important;
  }

  #about .grid.grid-cols-2 h4 {
    font-size: 2rem !important;
    margin-bottom: 0.25rem !important;
    color: hsl(35, 40%, 50%) !important;
  }

  #about .grid.grid-cols-2 p {
    font-size: 0.6875rem !important;
    letter-spacing: 0.05em !important;
    color: hsl(155, 40%, 18%) !important;
  }

  #about .gap-16 {
    gap: 1.5rem !important;
  }

  /* Testimonials section mobile */
  #testimonials h2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* Services section mobile */
  #services {
    background: hsl(40, 20%, 97%) !important;
  }

  /* Services header section */
  #services > div:first-child {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  #services > div:first-child h4 {
    font-size: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  #services > div:first-child h2 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }

  #services > div:first-child p {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
  }

  /* Service item container */
  #services > div[id^="service-"] {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(214, 211, 209, 0.3) !important;
  }

  #services > div[id^="service-"]:last-child {
    border-bottom: none !important;
  }

  #services .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Only apply flex layout to grid in mobile, not desktop */
  #services > div[id^="service-"] > .container > .grid {
    gap: 1.25rem !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Mobile card styling */
  #services .service-content-wrapper {
    background: white !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }

  #services .service-text-content {
    padding: 1.5rem !important;
  }

  /* Show mobile image, hide desktop image */
  #services .service-image-mobile {
    display: block !important;
    height: 200px !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }

  #services .service-image-desktop {
    display: none !important;
  }

  /* Service content */
  #services .space-y-8 {
    margin-top: 0 !important;
    background: white !important;
    padding: 1.5rem !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  }

  /* Service image */
  #services .h-\[500px\] {
    height: 200px !important;
    border-radius: 0.125rem !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    margin-top: 1rem !important;
  }

  #services .h-\[500px\] img {
    border-radius: 0.125rem !important;
  }

  #services .space-y-8 > * + * {
    margin-top: 1rem !important;
  }

  /* Service icon and subtitle */
  #services .flex.items-center.gap-4 {
    margin-bottom: 0.75rem !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
  }

  #services .p-3.rounded-full {
    padding: 0.75rem !important;
    width: 2.75rem !important;
    height: 2.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  #services .p-3.rounded-full svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }

  #services h3.text-sm {
    font-size: 0.6875rem !important;
    letter-spacing: 0.08em !important;
  }

  /* Service title */
  #services h2.text-4xl {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.75rem !important;
  }

  /* Service description */
  #services p.text-lg {
    font-size: 0.9375rem !important;
    line-height: 1.7 !important;
    color: hsl(220, 10%, 40%) !important;
  }

  /* Service features list */
  #services .space-y-4 {
    margin-top: 1rem !important;
  }

  #services .space-y-4 > * + * {
    margin-top: 0.75rem !important;
  }

  #services .space-y-4 li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    padding: 0.5rem !important;
    background: hsl(155, 10%, 97%) !important;
    border-radius: 0.375rem !important;
    transition: all 0.3s ease !important;
  }

  #services .space-y-4 li:hover {
    background: hsl(155, 20%, 95%) !important;
    transform: translateX(4px) !important;
  }

  #services .space-y-4 li .h-1\.5 {
    margin-top: 0.5rem !important;
    background: hsl(35, 40%, 50%) !important;
  }

  #services .space-y-4 li span {
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    color: hsl(155, 40%, 18%) !important;
  }

  /* Learn More button */
  #services a.inline-flex {
    width: 100% !important;
    margin-top: 1.25rem !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 0.9375rem !important;
    justify-content: center !important;
    background: hsl(155, 40%, 18%) !important;
    color: white !important;
    border: none !important;
    border-radius: 0.375rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }

  #services a.inline-flex:hover {
    background: hsl(35, 40%, 50%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(180, 130, 70, 0.3) !important;
  }

  #services a.inline-flex svg {
    transition: transform 0.3s ease !important;
  }

  #services a.inline-flex:hover svg {
    transform: translateX(4px) !important;
  }

  #services .gap-16 {
    gap: 1.25rem !important;
  }

  /* Read More Content Animation - Mobile Only */
  #services .service-expertise-content,
  #services .service-expertise-content-greece,
  #services .service-expertise-content-belgium,
  #services .service-expertise-content-hongkong {
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                margin-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: top;
  }

  #services .service-expertise-content.hidden,
  #services .service-expertise-content-greece.hidden,
  #services .service-expertise-content-belgium.hidden,
  #services .service-expertise-content-hongkong.hidden {
    transform: translateY(-10px) scaleY(0.95) !important;
  }

  #services .service-expertise-content:not(.hidden),
  #services .service-expertise-content-greece:not(.hidden),
  #services .service-expertise-content-belgium:not(.hidden),
  #services .service-expertise-content-hongkong:not(.hidden) {
    transform: translateY(0) scaleY(1) !important;
  }

  /* Value Pillars Section Mobile */
  #value-pillars {
    padding: 3rem 0 !important;
  }

  #value-pillars .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Value Pillars Header */
  #value-pillars .value-pillars-header {
    margin-bottom: 2rem !important;
    text-align: center !important;
  }

  #value-pillars .value-pillars-header h2 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
  }

  #value-pillars .value-pillars-header p {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
    padding: 0 1rem !important;
  }

  /* Value pillars mobile */
  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Value pillars card styling for mobile */
  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 > div {
    background: white !important;
    padding: 1.5rem !important;
    border-radius: 0.5rem !important;
    border: 1px solid hsl(155, 10%, 90%) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    align-items: center !important;
  }

  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 > div:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px) !important;
  }

  /* Icon container in value pillars */
  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 .p-3.rounded-full {
    padding: 1rem !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem auto !important;
  }

  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 svg {
    width: 1.75rem !important;
    height: 1.75rem !important;
  }

  /* Typography in value pillars */
  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 h3.value-pillar-title {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.75rem !important;
    text-align: center !important;

  }

  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 p {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
    color: hsl(220, 10%, 40%) !important;
  }

  .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 .space-y-4 > * + * {
    margin-top: 0.75rem !important;
  }

  section.py-24 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Contact section mobile */
  #contact {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  #contact .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  #contact .grid.lg\:grid-cols-2 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas: 
      "heading"
      "email"
      "form"
      "addresses";
    gap: 2.5rem !important;
  }

  /* Contact info section - use display: contents to allow children to be reordered */
  #contact .space-y-10 {
    display: contents !important;
  }

  /* Hide empty divs that might interfere */
  #contact .grid.lg\:grid-cols-2 > .space-y-4:empty {
    display: none !important;
  }

  /* Override any general space-y-10 rules that might interfere */
  #contact .grid.lg\:grid-cols-2 > * {
    margin-top: 0 !important;
  }

  /* Contact heading - grid area: heading */
  #contact .grid.lg\:grid-cols-2 > h2 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1.5rem !important;
    color: #6B7C5E !important;
    grid-area: heading !important;
    margin-top: 0 !important;
  }

  /* Email section - grid area: email */
  #contact .grid.lg\:grid-cols-2 > .space-y-2 {
    margin-bottom: 1.5rem !important;
    grid-area: email !important;
    margin-top: 0 !important;
  }

  #contact .space-y-2 p {
    font-size: 0.875rem !important;
    margin-bottom: 0.5rem !important;
  }

  #contact .space-y-2 a {
    font-size: 0.875rem !important;
    word-break: break-word !important;
  }

  /* Contact form container - grid area: form */
  #contact .grid.lg\:grid-cols-2 > .mb-6 {
    grid-area: form !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Office location pills - grid area: addresses (after form) */
  #contact .grid.lg\:grid-cols-2 > .space-y-3 {
    margin-top: 2.5rem !important;
    grid-area: addresses !important;
    margin-bottom: 0 !important;
  }

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

  #contact .office-location-pill {
    padding: 1rem 1.25rem !important;
    border-radius: 57px !important;
    background: rgba(107, 124, 94, 0.08) !important;
    border: 1px solid rgba(107, 124, 94, 0.15) !important;
  }

  #contact .office-location-pill p:first-child {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.375rem !important;
  }

  #contact .office-location-pill p:last-child {
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
  }

  /* Contact form */
  #contact form {
    margin-top: 0 !important;
    padding: 0 !important;
  }

  #contact form .space-y-6 {
    gap: 1.25rem !important;
  }

  #contact form .space-y-6 > * + * {
    margin-top: 1.25rem !important;
  }

  #contact form label {
    font-size: 0.6875rem !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
  }

  #contact form input,
  #contact form textarea {
    font-size: 0.9375rem !important;
    padding: 0.5rem 0 !important;
    border-bottom-width: 1px !important;
  }

  #contact form textarea {
    min-height: 100px !important;
    resize: vertical !important;
  }

  /* Checkbox */
  #contact form .flex.items-start.gap-3 {
    margin-top: 1rem !important;
    align-items: flex-start !important;
  }

  #contact form .flex.items-start.gap-3 input[type="checkbox"] {
    margin-top: 0.25rem !important;
    flex-shrink: 0 !important;
  }

  #contact form .flex.items-start.gap-3 label {
    font-size: 0.6875rem !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
  }

  /* Submit button */
  #contact form .flex.justify-end {
    margin-top: 1.5rem !important;
    justify-content: flex-start !important;
  }

  #contact form button[type="submit"] {
    width: 100% !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 0.9375rem !important;
  }

  /* Background image - hide on mobile */
  #contact .absolute.inset-0 {
    display: none !important;
  }

  /* Footer mobile */
  footer .py-24 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  footer .md\:py-32 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  footer .flex.flex-col.md\:flex-row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  footer .gap-8.md\:gap-12 {
    gap: 1.5rem !important;
  }

  footer .mb-16.md\:mb-20 {
    margin-bottom: 2rem !important;
  }

  /* Form inputs mobile */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }

  /* Buttons mobile */
  a.inline-flex.items-center,
  button {
    font-size: 0.875rem !important;
    padding: 0.15rem 1.5rem !important;
  }

  /* Submit button specific */
  /* Submit button styles removed to allow button classes to work */

  /* Max widths mobile */
  .max-w-4xl {
    max-width: 100% !important;
  }

  .max-w-3xl {
    max-width: 100% !important;
  }

  .max-w-2xl {
    max-width: 100% !important;
  }

  .max-w-xs {
    max-width: 100% !important;
  }

  /* Hero indicators mobile */
  #hero .absolute.bottom-8 {
    bottom: 1rem !important;
  }
  
  #hero .absolute.sm\:bottom-12 {
    bottom: 1.5rem !important;
  }

  /* Hide desktop-only elements */
  .hidden.md\:block {
    display: none !important;
  }

  @media (min-width: 640px) {
    .sm\:hidden { display: none; }
    .sm\:block { display: block; }
    .sm\:inline-block { display: inline-block; }
  }
  /* Show mobile-only elements - but NOT the mobile menu which should be hidden by default */


  /* Ensure mobile menu is hidden by default */
  #mobile-menu.hidden {
    display: none !important;
  }

  /* Mobile menu when visible */
  #mobile-menu:not(.hidden) {
    display: block !important;
  }

  /* Text alignment mobile */
  .text-center {
    text-align: center !important;
  }

  /* Leading adjustments mobile */
  .leading-tight {
    line-height: 1.3 !important;
  }
.cursor-pointer{
  cursor: pointer!important;
}
  /* Padding adjustments */
  .pt-6 {
    padding-top: 1rem !important;
  }

  .pb-12 {
    padding-bottom: 2rem !important;
  }

  /* Margin adjustments */
  .mb-6 {
    margin-bottom: 1rem !important;
  }

  .mt-4 {
    margin-top: 0.75rem !important;
  }

  /* Space-y adjustments */
  .space-y-6 > * + * {
    margin-top: 1rem !important;
  }

  .space-y-8 > * + * {
    margin-top: 1.25rem !important;
  }

  .space-y-10 > * + * {
    margin-top: 1.5rem !important;
  }

  /* Scroll margin for fixed navbar */
  .scroll-mt-20 {
    scroll-margin-top: 5rem !important;
  }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
  /* Even smaller adjustments for very small screens */
  #hero {
    min-height: 60vh !important;
  }

  #hero h1 {
    font-size: 1.4rem !important;
  }

  .text-4xl {
    font-size: 1.5rem !important;
  }

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

  .py-24 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .px-6 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  /* Contact section extra small */
  #contact {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  #contact .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  #contact .grid.lg\:grid-cols-2 {
    gap: 2rem !important;
  }

  #contact h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1.25rem !important;
  }

  #contact .space-y-2 p,
  #contact .space-y-2 a {
    font-size: 0.8125rem !important;
  }


  #contact .office-location-pill p:first-child {
    font-size: 0.8125rem !important;
  }

  #contact .office-location-pill p:last-child {
    font-size: 0.75rem !important;
  }

  #contact form label {
    font-size: 0.625rem !important;
  }

  #contact form input,
  #contact form textarea {
    font-size: 0.875rem !important;
  }

  #contact form textarea {
    min-height: 80px !important;
  }

  #contact form .flex.items-start.gap-3 label {
    font-size: 0.625rem !important;
  }

  #contact form button[type="submit"] {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.875rem !important;
  }

  /* About section extra small */
  #about {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  #about .h-\[600px\] {
    height: 180px !important;
  }

  #about .space-y-8 {
    padding: 1.25rem !important;
  }

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

  #about p {
    font-size: 0.875rem !important;
  }

  #about .grid.grid-cols-2 > div {
    padding: 0.75rem !important;
  }

  #about .grid.grid-cols-2 h4 {
    font-size: 1.75rem !important;
  }

  #about .grid.grid-cols-2 p {
    font-size: 0.625rem !important;
  }

  /* Services extra small */
  #services > div:first-child {
    padding-top: 1.5rem !important;
    padding-bottom: 0.25rem !important;
  }

  #services > div:first-child h2 {
    font-size: 1.5rem !important;
  }

  #services > div:first-child p {
    font-size: 0.875rem !important;
  }

  #services .h-\[500px\] {
    height: 160px !important;
  }

  #services .space-y-8 {
    padding: 1.25rem !important;
  }

  #services h2.text-4xl {
    font-size: 1.375rem !important;
  }

  #services p.text-lg {
    font-size: 0.875rem !important;
  }

  #services .space-y-4 li {
    padding: 0.375rem !important;
  }

  #services .space-y-4 li span {
    font-size: 0.8125rem !important;
  }

  #services a.inline-flex {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.875rem !important;
  }

  #services > div[id^="service-"] {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .gap-16 {
    gap: 1rem !important;
  }

  /* Value pillars extra small screens */
  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
    gap: 0.875rem !important;
  }

  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 > div {
    padding: 1.25rem !important;
  }

  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 h3.value-pillar-title {
    font-size: 1.125rem !important;

  }

  #value-pillars .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 p {
    font-size: 0.875rem !important;
  }

  #value-pillars .value-pillars-header h2 {
    font-size: 1.75rem !important;
  }

  #value-pillars .value-pillars-header p {
    font-size: 0.875rem !important;
  }
}

/* Contact Section - Oppenheim Style */


#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea {
  border-radius: 0 !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  box-shadow: none !important;
}

#contact input[type="text"]:focus,
#contact input[type="email"]:focus,
#contact input[type="tel"]:focus,
#contact textarea:focus {
  border-bottom-color: #333 !important;
  box-shadow: none !important;
}

/* Contact button styles removed to allow button classes to work */
#contact button[type="submit"] {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

#contact button[type="submit"]:focus,
#contact button[type="submit"]:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Floating CTA Button */
.fixed.bottom-8.right-8 {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
}

@media (max-width: 768px) {
  .fixed.bottom-8.right-8 {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.875rem !important;
  }
}

/* WhatsApp Modal */
.whatsapp-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-modal.hidden {
  display: none;
}

.whatsapp-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.whatsapp-modal-content {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: modalFadeIn 0.3s ease-out;
  z-index: 101;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.whatsapp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-muted-foreground);
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-modal-close:hover {
  background: var(--color-muted);
  color: var(--color-foreground);
}

.whatsapp-modal-body {
  text-align: center;
  padding-top: 1rem;
}

.whatsapp-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.whatsapp-icon {
  width: 64px;
  height: 64px;
  color: #25D366;
}

.whatsapp-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
}

.whatsapp-modal-text {
  font-size: 1rem;
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.whatsapp-modal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
}

.whatsapp-modal-link:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .whatsapp-modal-content {
    padding: 1.5rem;
    max-width: 90%;
  }
  
  .whatsapp-icon {
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-modal-title {
    font-size: 1.25rem;
  }
  
  .whatsapp-modal-text {
    font-size: 0.9375rem;
  }
}

.text-white{
  color: white!important;
}

/* Privacy Policy Modal */
.privacy-policy-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-policy-modal.hidden {
  display: none;
}

.privacy-policy-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.privacy-policy-modal-content {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: modalFadeIn 0.3s ease-out;
  z-index: 101;
}

.privacy-policy-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer !important;
  color: var(--color-muted-foreground);
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 102 !important;
  pointer-events: auto !important;
}

.privacy-policy-modal-close:hover {
  background: var(--color-muted);
  color: var(--color-foreground);
}

.privacy-policy-modal-close:focus {
  outline: 2px solid var(--color-ring);
  outline-offset: 2px;
}

.privacy-policy-modal-body {
  padding-top: 0.5rem;
}

.privacy-policy-modal-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  color: hsl(155, 40%, 18%);
}

.privacy-policy-modal-text {
  font-size: 1rem;
  color: var(--color-foreground);
  line-height: 1.8;
}

.privacy-policy-modal-text p {
  margin-bottom: 1.25rem;
}

.privacy-policy-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(155, 40%, 18%);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
}

.privacy-policy-divider {
  border-top: 2px solid var(--color-border);
  margin: 2.5rem 0;
}

.privacy-policy-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.privacy-policy-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.privacy-policy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: hsl(155, 40%, 18%);
  font-weight: bold;
  font-size: 1.2rem;
}

.privacy-policy-list li strong {
  color: hsl(155, 40%, 18%);
}

.privacy-policy-link-btn {
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 10 !important;
  display: inline-block;
  text-decoration: underline;
}

.privacy-policy-link-btn:hover {
  opacity: 0.8;
  text-decoration: underline;
}

footer .privacy-policy-link-btn {
  z-index: 10 !important;
  pointer-events: auto !important;
}

@media (max-width: 768px) {
  .privacy-policy-modal-content {
    padding: 1.5rem;
    max-width: 95%;
  }
  
  .privacy-policy-modal-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .privacy-policy-modal-text {
    font-size: 0.9375rem;
  }
  
  .privacy-policy-section-title {
    font-size: 1.125rem;
  }
  
  .privacy-policy-divider {
    margin: 2rem 0;
  }
}