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

:root {
  /* Color Palette — Azzurrino / Steel-blue */
  --bg-color: #F8FAFC; /* Cool off-white */
  --bg-warm: #F5F8FC; /* Cool warm white */
  --surface-color: #ffffff;
  --accent-beige: #dce6f0; /* Soft lavender-blue */
  --accent-sage: #5b8fb9; /* Steel-blue (main accent) */
  --accent-sage-light: #dfe9f3; /* Very light azure */
  --text-dark: #1e2d3d; /* Deep navy charcoal */
  --text-muted: #546a7b;
  
  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4.5rem;
  --spacing-xxl: 6rem;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Shadows */
  --shadow-soft: 0 10px 40px rgba(0,0,0,0.03);
  --shadow-hover: 0 15px 50px rgba(0,0,0,0.06);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none; /* Custom Cursor enabled */
}

a, button, input, select, textarea {
  cursor: none;
}

img, video {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

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

.title-xl {
  font-size: clamp(3rem, 5vw, 5.5rem);
  letter-spacing: -0.02em;
}

.title-lg {
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: -0.01em;
}

.title-md {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.title-sm {
  font-size: 1.5rem;
}

.text-lg {
  font-size: 1.25rem;
  line-height: 1.7;
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-sm {
  max-width: 900px;
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: var(--spacing-lg) 0;
  }
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

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

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

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

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex {
  display: flex;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-between {
  justify-content: space-between;
  align-items: center;
}

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

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: var(--spacing-md) 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--spacing-sm) 0;
  box-shadow: var(--shadow-soft);
}

.nav-brand {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.nav-brand span {
  color: var(--accent-sage);
}

.nav-brand img {
  height: 85px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

.navbar.scrolled .nav-brand img {
  height: 65px;
}


.nav-links {
  display: flex;
  gap: var(--spacing-md);
}

.nav-link {
  font-size: 1rem;
  font-weight: 400;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface-color);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-sage);
  color: #fff;
}

.btn-primary:hover {
  background-color: #4a7fa8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(91, 143, 185, 0.4);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--bg-color);
}

.btn-white {
    background-color: #fff;
    color: var(--text-dark);
}

.btn-white:hover {
    background-color: var(--accent-beige);
}

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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0, 0.4);
  /* background: linear-gradient(to right, rgba(44, 48, 46, 0.8) 0%, rgba(44, 48, 46, 0.2) 100%); */
  z-index: -1;
}

.hero-content {
  color: #fff;
  max-width: 800px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: var(--spacing-sm);
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--spacing-md);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }
}

/* Section specific backgrounds */
.bg-warm { background-color: var(--bg-warm); }
.bg-white { background-color: var(--surface-color); }
.bg-sage-light { background-color: var(--accent-sage-light); }
.bg-dark { background-color: var(--text-dark); color: #fff; }
.bg-dark h2, .bg-dark h3 { color: #fff; }

/* Modern Image Classes */
.img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  position: relative;
}

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

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

.img-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}

/* Enhanced Cards */
.card {
  background-color: var(--surface-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.02);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(156, 170, 160, 0.2);
}

.card-icon {
  width: 64px;
  height: 64px;
  background-color: var(--accent-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: var(--accent-sage);
}

.card-icon svg { width: 32px; height: 32px; }

.card-title {
  margin-bottom: var(--spacing-xs);
}

.card-desc {
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.card-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-sage);
}

.card-link:hover {
  gap: 12px;
}

/* Page Headers */
.page-header {
  padding-top: 140px;
  padding-bottom: 60px;
  background-color: var(--bg-warm);
}

/* Advanced Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }



/* Custom Cursor */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-sage);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-sage);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
}

/* Cursor Hover States */
body.hovering .cursor-dot {
  opacity: 0;
}
body.hovering .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(91, 143, 185, 0.1);
  border-color: transparent;
  backdrop-filter: blur(2px);
}

@media (max-width: 768px) {
  body { cursor: auto; }
  a, button, input, select, textarea { cursor: pointer; }
  .cursor-dot, .cursor-outline { display: none; }
}

/* Infinite Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  display: flex;
}

.marquee-content {
  display: flex;
  gap: 40px;
  animation: scroll-marquee 25s linear infinite;
  align-items: center;
}

.marquee-content span {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  color: var(--text-dark);
  text-transform: uppercase;
}

.marquee-content .dot {
  color: var(--accent-sage);
  font-size: 1.5rem;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reviews Carousel */
.reviews-section {
  overflow: hidden;
  padding: var(--spacing-xl) 0;
}

.reviews-track {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 5vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  justify-content: safe center; /* Force center align if fit */
}

.reviews-track::after {
  content: '';
  flex: 0 0 1px;
}

.reviews-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.review-card {
  min-width: 300px;
  max-width: 320px;
  background-color: var(--surface-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  border: 1px solid var(--accent-sage-light);
  scroll-snap-align: center;
  flex-shrink: 0;
  transition: transform 0.4s ease;
  text-align: center; /* Center alignment */
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-sage);
}

.stars {
  color: #d4af37; /* Gold */
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
  margin-top: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center; /* Centered author */
  gap: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-sage);
}

@media (max-width: 768px) {
  .review-card {
    min-width: 280px;
  }
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-sm);
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-color);
    border: 1px solid var(--accent-sage-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-sage);
    box-shadow: 0 0 0 3px rgba(156, 170, 160, 0.2);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--spacing-xxl) 0 var(--spacing-md);
}

.footer h4 {
  color: #fff;
  margin-bottom: var(--spacing-sm);
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: var(--spacing-sm);
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

@media(max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
}

/* Grid 5 columns */
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

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

@media (max-width: 768px) {
  .grid-5 { grid-template-columns: 1fr; }
}

/* Utility */
.text-muted {
  color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(44, 48, 46, 0.97);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.9);
  padding: var(--spacing-md) 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--accent-sage);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  font-family: var(--font-primary);
}

.cookie-btn-accept {
  background-color: var(--accent-sage);
  color: #fff;
}

.cookie-btn-accept:hover {
  background-color: #4a7fa8;
}

.cookie-btn-reject {
  background-color: transparent;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}

.cookie-btn-reject:hover {
  border-color: #fff;
  color: #fff;
}

.cookie-btn-manage {
  background-color: transparent;
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}

.cookie-btn-manage:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

/* Cookie Preferences Panel */
.cookie-prefs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cookie-prefs-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-prefs-panel {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  z-index: 10002;
  background: var(--surface-color);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  max-width: 560px;
  width: 100%;
  padding: var(--spacing-lg);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-prefs-panel.visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-prefs-panel h3 {
  margin-bottom: var(--spacing-md);
}

.cookie-pref-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--accent-sage-light);
}

.cookie-pref-item:last-of-type {
  border-bottom: none;
}

.cookie-pref-label {
  display: flex;
  flex-direction: column;
}

.cookie-pref-label strong {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.cookie-pref-label span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-toggle-slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--accent-sage);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-prefs-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--spacing-md);
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner-actions {
    justify-content: center;
  }
  .cookie-prefs-actions {
    flex-direction: column;
  }
  .cookie-prefs-actions .btn {
    width: 100%;
  }
}

/* Disclaimer Note */
.disclaimer-note {
  background: var(--accent-sage-light);
  border-left: 3px solid var(--accent-sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* Feature mini-cards for GSR BioSense */
.feature-mini-card {
  padding: var(--spacing-md);
  background: var(--surface-color);
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-sage-light);
  text-align: center;
  transition: all 0.4s ease;
}

.feature-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-sage);
}

.feature-mini-card h4 {
  color: var(--accent-sage);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}

.feature-mini-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9990;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ===========================
   Studio Page Redesign
   =========================== */

/* Studio Hero Banner */
.studio-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 70px;
}

.studio-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.studio-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 48, 46, 0.75) 0%, rgba(44, 48, 46, 0.1) 60%);
}

.studio-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-lg) var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.studio-hero-content h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.studio-hero-content p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

/* Blockquote styled */
.studio-quote {
  position: relative;
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, var(--accent-sage-light) 0%, rgba(239, 233, 224, 0.4) 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

.studio-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-sage);
  opacity: 0.25;
  font-family: Georgia, serif;
}

.studio-quote p {
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Value card with accent top */
.value-card {
  background: var(--surface-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--accent-sage-light);
  transition: all 0.4s ease;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-sage), #a3c4e0);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.value-card-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-sage-light);
  color: var(--accent-sage);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.value-card-icon svg {
  width: 26px;
  height: 26px;
}

/* Team member card */
.team-card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--accent-sage-light);
  transition: all 0.4s ease;
}

.team-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}

.team-card-header {
  background: linear-gradient(135deg, var(--accent-sage) 0%, #4a7fa8 100%);
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
  color: #fff;
  position: relative;
}

.team-card-avatar {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--spacing-sm);
}

.team-card-header h3 {
  color: #fff;
  margin-bottom: 4px;
}

.team-card-header .team-role {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 400;
}

.team-card-body {
  padding: var(--spacing-lg);
}

.team-card-body p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.team-credentials {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-md);
}

.team-credentials li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.team-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-sage);
  border-radius: 50%;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-tag {
  background: var(--accent-sage-light);
  color: var(--text-dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.team-tag:hover {
  background: var(--accent-sage);
  color: #fff;
}

@media (max-width: 768px) {
  .studio-hero {
    height: 40vh;
    min-height: 280px;
  }
}


