@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* Colors */
  --cream: #fafaf8;
  --cream-deep: #f2f2ee;
  --teal-900: #0d2929; /* Dark Forest Green */
  --teal-700: #1e4d4d; /* Brand Teal */
  --teal-600: #2d6c6c;
  --teal-500: #448989;
  --teal-100: #eef7f7;
  --coral: #d46a53; /* Accent Coral */
  --white: #ffffff;
  --black: #121717;
  
  --neutral-700: #2d3636;
  --neutral-300: #93a2a2;
  --neutral-100: #e5ebeb;
  
  /* Fonts */
  --font-title: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Margins & Paddings */
  --section-padding-large: clamp(3rem, 8vw, 7.5rem);
  --section-padding-medium: clamp(2rem, 5vw, 4rem);
  --container-width: 78rem;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--teal-900);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Base Headings & Typography */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 500;
  line-height: 1.25;
  color: var(--teal-900);
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  letter-spacing: -0.02em;
}

h1 em {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.5rem;
}

p {
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--neutral-700);
}

/* Sections & Container */
section {
  position: relative;
  width: 100%;
  padding: var(--section-padding-large) clamp(1rem, 6vw, 6rem);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

section.bg-dark {
  background: var(--teal-900);
  color: var(--cream);
}

section.bg-dark h1,
section.bg-dark h2,
section.bg-dark h3,
section.bg-dark p {
  color: var(--cream);
}

section.bg-dark p {
  color: var(--neutral-300);
}

.radius-top {
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  z-index: 2;
  box-shadow: 0 -20px 40px rgba(12, 41, 41, 0.15);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
  width: 100%;
}

.grid.services {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid.team {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.gap-16 {
  gap: 1.5rem;
}

/* Buttons & Links */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  background-color: var(--teal-700);
  color: var(--white);
  position: relative;
  transition: var(--transition-smooth);
}

.button.outline {
  background-color: transparent;
  border-color: var(--teal-500);
  color: var(--cream);
}

.button.outline:hover {
  background-color: var(--cream);
  color: var(--teal-900);
  border-color: var(--cream);
}

/* Magnetic Button Text Slide-up Effect */
.button-text-wrapper {
  display: block;
  position: relative;
  height: 1.4em;
  overflow: hidden;
}

.button-text {
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.button-text.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
}

.button:hover .button-text {
  transform: translateY(-100%);
}

.button:hover .button-text.absolute {
  transform: translateY(0);
}

/* Link underline animated line */
.link-block {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  color: var(--teal-700);
  position: relative;
  padding-bottom: 2px;
}

.bg-dark .link-block {
  color: var(--cream);
}

.link-block .position-relative {
  position: relative;
  overflow: hidden;
}

.link-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.link-block:hover .link-line {
  transform: translateX(0);
}

/* Chevron arrow morphs */
.icon-16 {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.link-block:hover .icon-16 {
  transform: translate(3px, -3px);
}

.link-block.chevron::after {
  content: "›";
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
}

.link-block.chevron:hover::after {
  transform: translateX(5px);
}

/* Tags */
.tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: var(--teal-100);
  color: var(--teal-700);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.bg-dark .tag {
  background-color: rgba(255,255,255,0.08);
  color: var(--cream);
}

/* Navigation System */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12, 41, 41, 0.05);
  transition: var(--transition-smooth);
}

.global-header.scrolled {
  box-shadow: 0 4px 30px rgba(12, 41, 41, 0.05);
  background-color: var(--cream);
}

.navigation-bar {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  height: 2.2rem;
}

.nav-logo-text {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

.nav-menu-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--teal-900);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
  cursor: pointer;
}

/* Caret Dropdown indicator */
.caret {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

/* Dropdown styling */
.dropdown-wrapper {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  width: 320px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(12, 41, 41, 0.08);
  border: 1px solid rgba(12, 41, 41, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.dropdown-wrapper:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-wrapper:hover .caret {
  transform: rotate(180deg);
}

.dropdown-list {
  padding: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.dropdown-item {
  border-bottom: 1px solid var(--cream-deep);
  padding-bottom: 0.6rem;
}

.dropdown-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dropdown-item a {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--teal-900);
}

.dropdown-item a:hover {
  color: var(--coral);
}

/* Mobile Nav Styles */
.navigation-bar.mobile {
  display: none;
}

.menu-button {
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-menu {
  width: 24px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.menu-bar {
  width: 100%;
  height: 2px;
  background-color: var(--teal-900);
  transition: var(--transition-fast);
  transform-origin: center center;
}

.hamburger-active .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-active .menu-bar:nth-child(2) {
  opacity: 0;
}

.hamburger-active .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 5rem);
  background-color: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  list-style: none;
}

.mobile-menu-item {
  font-size: 1.4rem;
  font-weight: 500;
  border-bottom: 1px solid var(--neutral-100);
  padding-bottom: 0.8rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 41, 41, 0.4) 0%, rgba(12, 41, 41, 0.85) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-width);
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 5rem;
}

.hero-sub {
  color: var(--coral);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero h1 {
  max-width: 25ch;
  color: var(--white);
}

.hero-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin: 1rem 0;
}

.hero-list-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--neutral-100);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 400;
}

.hero-list-item::before {
  content: "✓";
  color: var(--coral);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Services Section */
.services-card {
  background-color: var(--teal-900);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.services-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.services-card h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--cream);
}

.services-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.media-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.media-wrapper.anamorphic {
  aspect-ratio: 16 / 9;
  max-height: 220px;
}

.media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.services-card:hover .media-wrapper img {
  transform: scale(1.05);
}

/* Meet your dentist section */
.card {
  background-color: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(12, 41, 41, 0.05);
}

.card.cursor-pointer {
  cursor: pointer;
}

.card h3 {
  font-size: 1.5rem;
  color: var(--teal-900);
}

.card blockquote {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--teal-700);
  border-left: 2px solid var(--coral);
  padding-left: 1rem;
  margin: 0.5rem 0;
}

.filter-saturation {
  filter: saturate(0.85) contrast(1.02);
}

.card:hover .filter-saturation {
  filter: saturate(1.1) contrast(1.05);
}

/* Customer Experience section */
.card.image-content {
  position: relative;
  overflow: hidden;
  height: 380px;
  color: var(--white);
  border: none;
  cursor: pointer;
}

.card.image-content .bg-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card.image-content .bg-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card.image-content:hover .bg-image-wrapper img {
  transform: scale(1.05);
}

.card.image-content .bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(12, 41, 41, 0.9) 0%, rgba(12, 41, 41, 0.2) 60%, rgba(12, 41, 41, 0.1) 100%);
  transition: opacity 0.5s ease;
}

.card.image-content .bg-overlay.secondary {
  opacity: 0;
  background: linear-gradient(to top, rgba(12, 41, 41, 0.95) 0%, rgba(12, 41, 41, 0.5) 100%);
}

.card.image-content:hover .bg-overlay.secondary {
  opacity: 1;
}

.card.image-content .text-wrapper {
  position: relative;
  z-index: 3;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.h3-heading-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.h3-heading-wrapper .number {
  font-weight: 700;
  color: var(--coral);
  font-size: 1.1rem;
}

.card.image-content h3.body-text {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}

.icon-wrapper .icon-32 {
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.card.image-content:hover .icon-32 {
  transform: rotate(90deg);
}

.paragraph-wrapper {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.card.image-content.expanded .paragraph-wrapper,
.card.image-content:hover .paragraph-wrapper {
  max-height: 100px;
  opacity: 1;
}

.paragraph-wrapper p {
  font-size: 0.95rem;
  color: var(--neutral-100);
}

.paragraph-wrapper p strong {
  color: var(--cream);
  font-weight: 500;
}

/* Payment Plans Section */
.scroller-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  margin: 1.5rem 0;
}

.scroller-camera {
  display: flex;
  width: max-content;
}

.scroller-track-wrapper {
  display: flex;
  gap: 4rem;
  animation: infinite-scroll 25s linear infinite;
}

@keyframes infinite-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

.scroller-logo {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.scroller-logo span {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--coral);
}

/* Interactive Floating Contact Panel Widget */
.osd-contact-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--teal-700);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.osd-contact-trigger:hover {
  transform: scale(1.08);
  background-color: var(--teal-600);
}

.osd-contact-trigger svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.osd-contact-trigger.active {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(30, 77, 77, 0.15); }
}

.osd-contact-trigger {
  animation: pulse 2.5s ease-in-out infinite;
}

.osd-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background-color 0.35s ease;
}

.osd-panel-backdrop.visible {
  background-color: rgba(12, 41, 41, 0.35);
  backdrop-filter: blur(2px);
  pointer-events: auto;
}

.osd-contact-panel {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10002;
  width: 340px;
  max-height: calc(100vh - 56px);
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(12, 41, 41, 0.15), 0 0 0 1px rgba(12, 41, 41, 0.05);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.osd-contact-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.osd-panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 41, 41, 0.05);
  transition: background-color 0.2s ease;
}

.osd-panel-close:hover {
  background: rgba(12, 41, 41, 0.1);
}

.osd-panel-close svg {
  width: 12px;
  height: 12px;
  fill: var(--teal-900);
}

.osd-panel-header {
  padding: 28px 28px 16px;
}

.osd-panel-logo {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--teal-700);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.osd-panel-greeting {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--teal-900);
}

.osd-panel-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--cream-deep);
}

.osd-panel-content {
  padding: 22px 28px 8px;
}

.osd-panel-headline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 6px;
}

.osd-panel-desc {
  font-size: 0.85rem;
  color: var(--neutral-700);
  margin-bottom: 0;
  font-weight: 400;
}

.osd-panel-actions {
  padding: 16px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.osd-panel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.osd-btn-whatsapp {
  background-color: var(--teal-700);
  color: var(--white);
}

.osd-btn-whatsapp:hover {
  background-color: var(--teal-600);
  box-shadow: 0 4px 12px rgba(30, 77, 77, 0.25);
}

.osd-btn-call {
  background-color: transparent;
  color: var(--teal-900);
  border-color: rgba(12, 41, 41, 0.15);
}

.osd-btn-call:hover {
  background-color: rgba(12, 41, 41, 0.05);
  border-color: rgba(12, 41, 41, 0.30);
}

.osd-panel-hours {
  padding: 0 28px 20px;
  font-size: 0.75rem;
  color: var(--neutral-300);
  text-align: center;
  line-height: 1.4;
}

/* Footer Section */
footer {
  width: 100%;
  background-color: var(--teal-900);
  color: var(--cream);
  padding: var(--section-padding-large) clamp(1rem, 6vw, 6rem) var(--section-padding-medium);
  font-size: 0.9rem;
}

footer .container {
  gap: 4rem;
}

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

footer h4 {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

footer ul li {
  font-weight: 300;
  color: var(--neutral-300);
}

footer ul li a:hover {
  color: var(--coral);
}

footer hr {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  border: none;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--neutral-300);
  font-weight: 300;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--coral);
}

/* Media Queries for Responsiveness */
@media (max-width: 900px) {
  footer .grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navigation-bar.desktop {
    display: none;
  }
  
  .navigation-bar.mobile {
    display: flex;
  }
  
  .hero-container {
    padding: 0 1.5rem;
  }
  
  .hero-list {
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .grid.services,
  .grid.team {
    grid-template-columns: 1fr;
  }
  
  .card.image-content {
    height: 300px;
  }
  
  .card.image-content:hover .paragraph-wrapper {
    max-height: 0;
    opacity: 0;
  }
  
  .card.image-content.expanded .paragraph-wrapper {
    max-height: 120px;
    opacity: 1;
  }
  
  footer .grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .osd-contact-panel {
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
  }
  
  .osd-contact-trigger {
    bottom: 20px;
    right: 20px;
  }
}
