/* Flowtenta Stylesheet
   Author: Claude
   Date: May 12, 2025
*/

/* ==================== FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ==================== ROOT VARIABLES ==================== */
:root {
  /* Colors */
  --flowtenta-white: #ffffff;
  --flowtenta-cream: #E9EED9;
  --flowtenta-sage: #CBD2A4;
  --flowtenta-taupe: #9A7E6F;
  --flowtenta-brown: #54473F;
  --flowtenta-overlay: rgba(84, 71, 63, 0.7);
  --flowtenta-shadow: rgba(84, 71, 63, 0.1);
  
  /* Typography */
  --flowtenta-font-heading: 'Cormorant Garamond', serif;
  --flowtenta-font-body: 'Montserrat', sans-serif;
  
  /* Spacing */
  --flowtenta-space-xs: 0.5rem;
  --flowtenta-space-sm: 1rem;
  --flowtenta-space-md: 2rem;
  --flowtenta-space-lg: 4rem;
  --flowtenta-space-xl: 8rem;
  
  /* Transitions */
  --flowtenta-transition-fast: 0.3s ease;
  --flowtenta-transition-medium: 0.5s ease;
  --flowtenta-transition-slow: 0.8s ease;
  
  /* Border Radius */
  --flowtenta-radius-sm: 4px;
  --flowtenta-radius-md: 8px;
  --flowtenta-radius-lg: 16px;
  --flowtenta-radius-xl: 24px;
  --flowtenta-radius-full: 50%;
}

/* ==================== BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 1rem = 10px */
  height: 100%;
}

body {
  font-family: var(--flowtenta-font-body);
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 300;
  color: var(--flowtenta-brown);
  background-color: var(--flowtenta-white);
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--flowtenta-font-heading);
  line-height: 1.2;
  margin-bottom: var(--flowtenta-space-sm);
  font-weight: 600;
  color: var(--flowtenta-brown);
  letter-spacing: 0.5px;
}

h1 {
  font-size: 5.2rem;
  text-shadow: 0.2rem 0.2rem 0.3rem rgba(154, 126, 111, 0.15);
}

h2 {
  font-size: 4.2rem;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(154, 126, 111, 0.1);
  margin-bottom: var(--flowtenta-space-md);
}

h3 {
  font-size: 3.2rem;
  margin-bottom: var(--flowtenta-space-sm);
}

h4 {
  font-size: 2.6rem;
}

h5 {
  font-size: 2.2rem;
}

h6 {
  font-size: 1.8rem;
}

p {
  margin-bottom: var(--flowtenta-space-md);
  font-size: 1.6rem;
  line-height: 1.8;
}

a {
  color: var(--flowtenta-taupe);
  text-decoration: none;
  transition: all var(--flowtenta-transition-fast);
  position: relative;
}

a:hover, a:focus {
  color: var(--flowtenta-brown);
}

a:focus {
  outline: 2px dotted var(--flowtenta-taupe);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--flowtenta-radius-md);
}

ul, ol {
  margin-bottom: var(--flowtenta-space-md);
  padding-left: var(--flowtenta-space-md);
}

li {
  margin-bottom: var(--flowtenta-space-xs);
}

strong {
  font-weight: 600;
}

blockquote {
  padding: var(--flowtenta-space-md);
  margin-bottom: var(--flowtenta-space-md);
  background-color: var(--flowtenta-cream);
  border-left: 4px solid var(--flowtenta-taupe);
  font-style: italic;
  border-radius: var(--flowtenta-radius-md);
}

::selection {
  background-color: var(--flowtenta-taupe);
  color: var(--flowtenta-white);
}

/* ==================== LAYOUT ==================== */
.flowtenta-container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--flowtenta-space-md);
}

.flowtenta-section {
  padding: 50px 0;
  position: relative;
}

.flowtenta-flex {
  display: flex;
}

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

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

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

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

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

.flowtenta-grid {
  display: grid;
  gap: var(--flowtenta-space-md);
}

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

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

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

/* ==================== COMPONENTS ==================== */

/* Section Headers */
.flowtenta-section-header {
  max-width: 80rem;
  margin: 0 auto var(--flowtenta-space-lg);
}

.flowtenta-section-subtitle {
  font-size: 2rem;
  color: var(--flowtenta-taupe);
  font-family: var(--flowtenta-font-heading);
  font-weight: 400;
  margin-bottom: var(--flowtenta-space-md);
}

/* Header & Navigation */
.flowtenta-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0.2rem 1rem var(--flowtenta-shadow);
  padding: var(--flowtenta-space-sm) 0;
  transition: all var(--flowtenta-transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.flowtenta-header.flowtenta-scrolled {
  padding: var(--flowtenta-space-xs) 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.flowtenta-logo-link {
  display: flex;
  align-items: center;
}

.flowtenta-logo {
  height: 5rem;
  width: auto;
  transition: all var(--flowtenta-transition-fast);
}

.flowtenta-scrolled .flowtenta-logo {
  height: 4rem;
}

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

.flowtenta-nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.flowtenta-nav-item {
  margin-left: var(--flowtenta-space-md);
  position: relative;
}

.flowtenta-nav-link {
  font-size: 1.6rem;
  font-weight: 500;
  padding: var(--flowtenta-space-xs) var(--flowtenta-space-xs);
  position: relative;
  letter-spacing: 0.5px;
}

.flowtenta-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.2rem;
  background-color: var(--flowtenta-taupe);
  transition: width var(--flowtenta-transition-fast);
}

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

.flowtenta-mobile-menu {
  display: none;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  position: relative;
  z-index: 200;
}

.flowtenta-bar {
  width: 3rem;
  height: 0.3rem;
  background-color: var(--flowtenta-brown);
  margin: 0.6rem 0;
  transition: all var(--flowtenta-transition-fast);
  border-radius: var(--flowtenta-radius-sm);
}

/* Hero Section */
.flowtenta-hero {
  padding-top: 12rem;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--flowtenta-cream) 0%, var(--flowtenta-white) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.flowtenta-hero-content {
  max-width: 60rem;
  position: relative;
  z-index: 2;
  animation: fadeInLeft 1.2s ease;
}

.flowtenta-hero-title {
  font-size: 7rem;
  margin-bottom: var(--flowtenta-space-md);
  text-shadow: 0.3rem 0.3rem 0.5rem rgba(154, 126, 111, 0.2);
  line-height: 1.1;
}

.flowtenta-hero-text {
  font-size: 2.2rem;
  margin-bottom: var(--flowtenta-space-lg);
  font-weight: 300;
  color: var(--flowtenta-brown);
  max-width: 55rem;
}

.flowtenta-hero-buttons {
  display: flex;
  gap: var(--flowtenta-space-sm);
  margin-bottom: var(--flowtenta-space-md);
}

.flowtenta-hero-image-container {
  position: relative;
  z-index: 1;
  animation: fadeInRight 1.2s ease;
}

.flowtenta-hero-image {
  border-radius: var(--flowtenta-radius-lg);
  box-shadow: 0 1rem 3rem rgba(84, 71, 63, 0.2);
  max-height: 70vh;
  object-fit: cover;
}

/* Buttons */
.flowtenta-btn {
  display: inline-block;
  padding: 1.5rem 3.5rem;
  background-color: var(--flowtenta-taupe);
  color: var(--flowtenta-white);
  border: none;
  border-radius: var(--flowtenta-radius-md);
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all var(--flowtenta-transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0.4rem 0.8rem rgba(154, 126, 111, 0.2);
}

.flowtenta-btn:hover, .flowtenta-btn:focus {
  background-color: var(--flowtenta-brown);
  color: var(--flowtenta-white);
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 1.5rem rgba(84, 71, 63, 0.3);
  text-decoration: none;
}

.flowtenta-btn:active {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.3rem 1rem rgba(84, 71, 63, 0.2);
}

.flowtenta-btn-outline {
  background-color: transparent;
  border: 0.2rem solid var(--flowtenta-taupe);
  color: var(--flowtenta-taupe);
  box-shadow: none;
}

.flowtenta-btn-outline:hover, .flowtenta-btn-outline:focus {
  background-color: var(--flowtenta-taupe);
  color: var(--flowtenta-white);
  box-shadow: 0 0.5rem 1.5rem rgba(84, 71, 63, 0.2);
}

.flowtenta-btn-lg {
  padding: 1.8rem 2.5rem;
  font-size: 1.5rem;
}

.flowtenta-btn-sm {
  padding: 1rem 2.5rem;
  font-size: 1.4rem;
}

/* Cards */
.flowtenta-card {
  background-color: var(--flowtenta-white);
  border-radius: var(--flowtenta-radius-lg);
  overflow: hidden;
  box-shadow: 0 1rem 2.5rem var(--flowtenta-shadow);
  transition: all var(--flowtenta-transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(203, 210, 164, 0.3);
}

.flowtenta-card:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 1.5rem 4rem rgba(84, 71, 63, 0.15);
  border-color: var(--flowtenta-sage);
}

.flowtenta-card-image {
  height: 28rem;
  width: 100%;
  object-fit: cover;
  transition: all var(--flowtenta-transition-medium);
  border-radius: var(--flowtenta-radius-lg) var(--flowtenta-radius-lg) 0 0;
}

.flowtenta-card:hover .flowtenta-card-image {
  transform: scale(1.03);
}

.flowtenta-card-content {
  padding: var(--flowtenta-space-lg) var(--flowtenta-space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.flowtenta-card-title {
  font-size: 2.8rem;
  margin-bottom: var(--flowtenta-space-sm);
  color: var(--flowtenta-brown);
}

.flowtenta-card-text {
  margin-bottom: var(--flowtenta-space-md);
  flex-grow: 1;
}

/* Price cards */
.flowtenta-price-card {
  background-color: var(--flowtenta-white);
  border-radius: var(--flowtenta-radius-lg);
  overflow: hidden;
  box-shadow: 0 1rem 2.5rem var(--flowtenta-shadow);
  transition: all var(--flowtenta-transition-medium);
  text-align: center;
  padding: var(--flowtenta-space-lg) var(--flowtenta-space-md);
  border: 0.2rem solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.flowtenta-price-card:hover {
  border-color: var(--flowtenta-sage);
  transform: translateY(-0.8rem) scale(1.02);
  box-shadow: 0 1.5rem 4rem rgba(84, 71, 63, 0.15);
}

.flowtenta-price-header {
  padding-bottom: var(--flowtenta-space-md);
  border-bottom: 0.1rem solid var(--flowtenta-cream);
  margin-bottom: var(--flowtenta-space-md);
}

.flowtenta-price-title {
  font-size: 2.8rem;
  color: var(--flowtenta-brown);
  margin-bottom: var(--flowtenta-space-sm);
}

.flowtenta-price-amount {
  font-size: 6rem;
  color: var(--flowtenta-taupe);
  margin: var(--flowtenta-space-xs) 0;
  font-family: var(--flowtenta-font-heading);
  font-weight: 600;
  line-height: 1;
}

.flowtenta-price-period {
  font-size: 1.8rem;
  color: var(--flowtenta-taupe);
  opacity: 0.8;
  font-weight: 300;
  margin-bottom: var(--flowtenta-space-sm);
}

.flowtenta-price-features {
  list-style: none;
  margin-bottom: var(--flowtenta-space-lg);
  flex-grow: 1;
  padding: 0;
}

.flowtenta-price-feature {
  padding: var(--flowtenta-space-sm) 0;
  border-bottom: 0.1rem dashed var(--flowtenta-cream);
  font-size: 1.6rem;
}

.flowtenta-price-feature:last-child {
  border-bottom: none;
}

.flowtenta-price-feature:before {
  content: "✓";
  margin-right: var(--flowtenta-space-sm);
  color: var(--flowtenta-taupe);
  font-weight: bold;
}

.flowtenta-price-note {
  background-color: var(--flowtenta-cream);
  border-radius: var(--flowtenta-radius-lg);
  padding: var(--flowtenta-space-lg);
  margin-top: var(--flowtenta-space-lg);
}

/* Forms */
.flowtenta-form-group {
  margin-bottom: var(--flowtenta-space-md);
}

.flowtenta-label {
  display: block;
  margin-bottom: var(--flowtenta-space-xs);
  font-weight: 500;
  color: var(--flowtenta-brown);
}

.flowtenta-input,
.flowtenta-textarea,
.flowtenta-select {
  width: 100%;
  padding: 1.5rem;
  border: 0.1rem solid rgba(203, 210, 164, 0.5);
  border-radius: var(--flowtenta-radius-md);
  font-family: var(--flowtenta-font-body);
  font-size: 1.6rem;
  transition: all var(--flowtenta-transition-fast);
  color: var(--flowtenta-brown);
  background-color: rgba(255, 255, 255, 0.9);
}

.flowtenta-input:focus,
.flowtenta-textarea:focus,
.flowtenta-select:focus {
  outline: none;
  border-color: var(--flowtenta-taupe);
  box-shadow: 0 0 0 0.3rem rgba(154, 126, 111, 0.2);
  background-color: var(--flowtenta-white);
}

.flowtenta-textarea {
  min-height: 15rem;
  resize: vertical;
}

.flowtenta-input-error,
.flowtenta-textarea-error,
.flowtenta-select-error {
  border-color: #cc3333;
}

.flowtenta-error-message {
  color: #cc3333;
  font-size: 1.4rem;
  margin-top: var(--flowtenta-space-xs);
}

.flowtenta-success-message {
  background-color: rgba(203, 210, 164, 0.3);
  border-radius: var(--flowtenta-radius-lg);
  padding: var(--flowtenta-space-lg);
  text-align: center;
}

.flowtenta-success-message h3 {
  margin-bottom: var(--flowtenta-space-md);
  color: var(--flowtenta-brown);
}

.flowtenta-contact-form-container {
  background-color: var(--flowtenta-white);
  border-radius: var(--flowtenta-radius-lg);
  padding: var(--flowtenta-space-lg);
  box-shadow: 0 1rem 3rem var(--flowtenta-shadow);
}

/* Contact Info */
.flowtenta-contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--flowtenta-space-lg);
}

.flowtenta-contact-item {
  text-align: center;
  margin-bottom: var(--flowtenta-space-md);
}

.flowtenta-contact-title {
  margin-bottom: var(--flowtenta-space-sm);
  font-size: 2.4rem;
}

.flowtenta-contact-text {
  margin-bottom: 0;
  font-size: 1.6rem;
}

/* Testimonials */
.flowtenta-testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--flowtenta-space-lg);
  margin-bottom: var(--flowtenta-space-lg);
}

.flowtenta-testimonial {
  background-color: var(--flowtenta-white);
  border-radius: var(--flowtenta-radius-lg);
  padding: var(--flowtenta-space-lg);
  box-shadow: 0 1rem 2.5rem var(--flowtenta-shadow);
  transition: all var(--flowtenta-transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.flowtenta-testimonial:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 4rem rgba(84, 71, 63, 0.15);
}

.flowtenta-testimonial-content {
  margin-bottom: var(--flowtenta-space-md);
  flex-grow: 1;
}

.flowtenta-testimonial-content p {
  font-style: italic;
  margin-bottom: 0;
  position: relative;
  padding: 0 var(--flowtenta-space-sm);
}

.flowtenta-testimonial-content p::before,
.flowtenta-testimonial-content p::after {
  content: '"';
  font-size: 4rem;
  color: var(--flowtenta-sage);
  line-height: 0;
  position: absolute;
}

.flowtenta-testimonial-content p::before {
  top: 1.5rem;
  left: -1rem;
}

.flowtenta-testimonial-content p::after {
  bottom: -0.5rem;
  right: -1rem;
}

.flowtenta-testimonial-author {
  display: flex;
  align-items: center;
}

.flowtenta-testimonial-image {
  width: 6rem;
  height: 6rem;
  border-radius: var(--flowtenta-radius-full);
  object-fit: cover;
  margin-right: var(--flowtenta-space-sm);
  border: 0.3rem solid var(--flowtenta-cream);
}

.flowtenta-testimonial-info {
  flex-grow: 1;
}

.flowtenta-testimonial-name {
  margin-bottom: 0.2rem;
  font-size: 1.8rem;
}

.flowtenta-testimonial-title {
  margin-bottom: 0;
  color: var(--flowtenta-taupe);
  font-size: 1.4rem;
}

/* Schedule */
.flowtenta-schedule-tabs {
  background-color: var(--flowtenta-white);
  border-radius: var(--flowtenta-radius-lg);
  padding: var(--flowtenta-space-xs);
  display: inline-flex;
  margin-bottom: var(--flowtenta-space-lg);
  box-shadow: 0 0.5rem 1.5rem var(--flowtenta-shadow);
  overflow-x: auto;
  white-space: nowrap;
  max-width: 100%;
}

.flowtenta-schedule-tab {
  background: none;
  border: none;
  padding: var(--flowtenta-space-sm) var(--flowtenta-space-md);
  font-family: var(--flowtenta-font-body);
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  color: var(--flowtenta-brown);
  font-weight: 500;
  transition: all var(--flowtenta-transition-fast);
  border-radius: var(--flowtenta-radius-md);
}

.flowtenta-schedule-tab:hover {
  background-color: rgba(203, 210, 164, 0.2);
}

.flowtenta-schedule-tab.flowtenta-active {
  background-color: var(--flowtenta-cream);
  color: var(--flowtenta-brown);
}

.flowtenta-schedule-day {
  display: none;
}

.flowtenta-schedule-day.flowtenta-active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.flowtenta-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: var(--flowtenta-space-md);
}

.flowtenta-schedule-item {
  background-color: var(--flowtenta-white);
  border-radius: var(--flowtenta-radius-lg);
  padding: var(--flowtenta-space-md);
  box-shadow: 0 0.5rem 1.5rem var(--flowtenta-shadow);
  transition: all var(--flowtenta-transition-fast);
  border-left: 4px solid var(--flowtenta-taupe);
}

.flowtenta-schedule-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2.5rem rgba(84, 71, 63, 0.15);
}

.flowtenta-schedule-time {
  font-weight: 600;
  margin-bottom: var(--flowtenta-space-xs);
  color: var(--flowtenta-brown);
  font-size: 1.8rem;
}

.flowtenta-schedule-class {
  font-family: var(--flowtenta-font-heading);
  font-size: 2.2rem;
  margin-bottom: var(--flowtenta-space-xs);
  color: var(--flowtenta-taupe);
}

.flowtenta-schedule-instructor {
  font-size: 1.4rem;
  color: var(--flowtenta-brown);
  opacity: 0.8;
}

/* Philosophy Section */
.flowtenta-philosophy-image-container {
  height: 100%;
  border-radius: var(--flowtenta-radius-lg);
  overflow: hidden;
  box-shadow: 0 1rem 3rem var(--flowtenta-shadow);
}

.flowtenta-philosophy-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all var(--flowtenta-transition-slow);
}

.flowtenta-philosophy-image-container:hover .flowtenta-philosophy-image {
  transform: scale(1.05);
}

.flowtenta-philosophy-content {
  padding: var(--flowtenta-space-md) 0;
}

.flowtenta-philosophy-item {
  margin-bottom: var(--flowtenta-space-md);
  padding-left: var(--flowtenta-space-md);
  border-left: 3px solid var(--flowtenta-sage);
}

.flowtenta-philosophy-title {
  margin-bottom: var(--flowtenta-space-xs);
  font-size: 2.4rem;
  color: var(--flowtenta-taupe);
}

/* Icons */
.flowtenta-icon {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  fill: var(--flowtenta-taupe);
  transition: all var(--flowtenta-transition-fast);
}

.flowtenta-icon:hover {
  fill: var(--flowtenta-brown);
  transform: scale(1.1);
}

.flowtenta-icon-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  margin: 0 auto var(--flowtenta-space-md);
  background-color: var(--flowtenta-cream);
  border-radius: var(--flowtenta-radius-full);
  transition: all var(--flowtenta-transition-medium);
}

.flowtenta-icon-box:hover .flowtenta-icon-bg {
  background-color: var(--flowtenta-sage);
  transform: scale(1.1) rotate(5deg);
}

.flowtenta-icon-title {
  font-size: 2.4rem;
  margin-bottom: var(--flowtenta-space-sm);
}

/* Map Section */
.flowtenta-map-section {
  padding: 0;
}

.flowtenta-map {
  height: 45rem;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 -1rem 2rem var(--flowtenta-shadow);
  position: relative;
}

.flowtenta-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.flowtenta-footer {
  background-color: var(--flowtenta-brown);
  color: var(--flowtenta-white);
  padding: var(--flowtenta-space-xl) 0 var(--flowtenta-space-lg);
  margin-top: auto;
  position: relative;
}

.flowtenta-footer::before {
  content: '';
  position: absolute;
  top: -3rem;
  left: 0;
  width: 100%;
  height: 3rem;
  background-image: linear-gradient(to right bottom, 
    var(--flowtenta-cream) 0%, 
    var(--flowtenta-cream) 50%, 
    var(--flowtenta-sage) 50%, 
    var(--flowtenta-sage) 100%);
}

.flowtenta-footer-logo {
  height: 6rem;
  margin-bottom: var(--flowtenta-space-md);
  filter: brightness(0) invert(1);
}

.flowtenta-footer-title {
  color: var(--flowtenta-white);
  font-size: 2.2rem;
  margin-bottom: var(--flowtenta-space-md);
  position: relative;
  padding-bottom: var(--flowtenta-space-sm);
}

.flowtenta-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4rem;
  height: 0.2rem;
  background-color: var(--flowtenta-sage);
}

.flowtenta-footer-text {
  margin-bottom: var(--flowtenta-space-md);
  opacity: 0.8;
  line-height: 1.8;
}

.flowtenta-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flowtenta-footer-item {
  margin-bottom: var(--flowtenta-space-sm);
  opacity: 0.8;
  transition: all var(--flowtenta-transition-fast);
}

.flowtenta-footer-item:hover {
  opacity: 1;
  transform: translateX(5px);
}

.flowtenta-footer-link {
  color: var(--flowtenta-cream);
  transition: all var(--flowtenta-transition-fast);
  display: inline-block;
  position: relative;
}

.flowtenta-footer-link::before {
  content: '›';
  position: absolute;
  left: -1.5rem;
  opacity: 0;
  transition: all var(--flowtenta-transition-fast);
}

.flowtenta-footer-link:hover,
.flowtenta-footer-link:focus,
.flowtenta-footer-link.active {
  color: var(--flowtenta-white);
  text-decoration: none;
  padding-left: 1.5rem;
}

.flowtenta-footer-link:hover::before,
.flowtenta-footer-link:focus::before,
.flowtenta-footer-link.active::before {
  opacity: 1;
}

.flowtenta-footer-bottom {
  padding-top: var(--flowtenta-space-md);
  margin-top: var(--flowtenta-space-lg);
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 1.4rem;
  opacity: 0.7;
}

/* Back to Top Button */
.flowtenta-back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 5rem;
  height: 5rem;
  background-color: var(--flowtenta-taupe);
  color: var(--flowtenta-white);
  border-radius: var(--flowtenta-radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all var(--flowtenta-transition-fast);
  box-shadow: 0 0.5rem 1.5rem rgba(84, 71, 63, 0.3);
}

.flowtenta-back-to-top.flowtenta-visible {
  opacity: 1;
  visibility: visible;
}

.flowtenta-back-to-top:hover {
  background-color: var(--flowtenta-brown);
  transform: translateY(-0.5rem);
}

.flowtenta-back-to-top svg {
  fill: var(--flowtenta-white);
  width: 2.4rem;
  height: 2.4rem;
}


.flowtenta-policy-header {
  text-align: center;
  margin-bottom: var(--flowtenta-space-xl);
}

.flowtenta-policy-title {
  font-size: 5rem;
  margin-bottom: var(--flowtenta-space-sm);
}

.flowtenta-policy-date {
  color: var(--flowtenta-taupe);
  font-size: 1.8rem;
  font-style: italic;
}

.flowtenta-policy-content {
  max-width: 90rem;
  margin: 0 auto;
  background-color: var(--flowtenta-white);
  border-radius: var(--flowtenta-radius-lg);
  padding: var(--flowtenta-space-xl) var(--flowtenta-space-lg);
  box-shadow: 0 1rem 3rem var(--flowtenta-shadow);
}

.flowtenta-policy-section {
  margin-bottom: var(--flowtenta-space-lg);
}

.flowtenta-policy-subtitle {
  font-size: 3rem;
  margin-bottom: var(--flowtenta-space-md);
  color: var(--flowtenta-brown);
  border-bottom: 0.2rem solid var(--flowtenta-cream);
  padding-bottom: var(--flowtenta-space-sm);
}

.flowtenta-policy-subheading {
  font-size: 2.4rem;
  margin-bottom: var(--flowtenta-space-sm);
  margin-top: var(--flowtenta-space-md);
  color: var(--flowtenta-taupe);
}

.flowtenta-policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--flowtenta-space-md);
}

.flowtenta-policy-table th,
.flowtenta-policy-table td {
  padding: var(--flowtenta-space-sm);
  border: 0.1rem solid var(--flowtenta-cream);
  text-align: left;
}

.flowtenta-policy-table th {
  background-color: var(--flowtenta-cream);
  font-weight: 600;
}

.flowtenta-policy-table tr:nth-child(even) {
  background-color: rgba(233, 238, 217, 0.3);
}

/* Success Page */
.flowtenta-success-section {
  padding-top: 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.flowtenta-success-content {
  max-width: 70rem;
  margin: 0 auto;
  background-color: var(--flowtenta-white);
  border-radius: var(--flowtenta-radius-lg);
  padding: var(--flowtenta-space-xl);
  box-shadow: 0 1rem 3rem var(--flowtenta-shadow);
}

.flowtenta-success-icon {
  width: 10rem;
  height: 10rem;
  background-color: var(--flowtenta-sage);
  border-radius: var(--flowtenta-radius-full);
  margin: 0 auto var(--flowtenta-space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.flowtenta-success-icon .flowtenta-icon {
  width: 5rem;
  height: 5rem;
  fill: var(--flowtenta-white);
}

.flowtenta-success-title {
  font-size: 4.2rem;
  margin-bottom: var(--flowtenta-space-md);
  color: var(--flowtenta-brown);
}

.flowtenta-success-text {
  font-size: 2rem;
  margin-bottom: var(--flowtenta-space-md);
}

.flowtenta-success-date {
  color: var(--flowtenta-taupe);
  font-style: italic;
  margin-bottom: var(--flowtenta-space-lg);
}

.flowtenta-success-details {
  background-color: var(--flowtenta-cream);
  padding: var(--flowtenta-space-md);
  border-radius: var(--flowtenta-radius-md);
  margin-bottom: var(--flowtenta-space-lg);
}

.flowtenta-success-subtitle {
  margin-bottom: var(--flowtenta-space-sm);
  color: var(--flowtenta-brown);
}

.flowtenta-success-actions {
  display: flex;
  gap: var(--flowtenta-space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.flowtenta-fade-in {
  opacity: 0;
}

.flowtenta-fade-up {
  opacity: 0;
  transform: translateY(3rem);
}

.flowtenta-fade-right {
  opacity: 0;
  transform: translateX(-3rem);
}

.flowtenta-visible {
  opacity: 1;
  transform: translate(0);
  transition: all 1s ease;
}

/* Utility Classes */
.flowtenta-text-center {
  text-align: center;
}

.flowtenta-text-right {
  text-align: right;
}

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

.flowtenta-bg-cream::before {
  top: 0;
  transform: rotate(180deg);
}

.flowtenta-bg-cream::after {
  bottom: 0;
}

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

.flowtenta-mb-xs {
  margin-bottom: var(--flowtenta-space-xs);
}

.flowtenta-mb-sm {
  margin-bottom: var(--flowtenta-space-sm);
}

.flowtenta-mb-md {
  margin-bottom: var(--flowtenta-space-md);
}

.flowtenta-mb-lg {
  margin-bottom: var(--flowtenta-space-lg);
}

.flowtenta-mb-xl {
  margin-bottom: var(--flowtenta-space-xl);
}

.flowtenta-mt-xs {
  margin-top: var(--flowtenta-space-xs);
}

.flowtenta-mt-sm {
  margin-top: var(--flowtenta-space-sm);
}

.flowtenta-mt-md {
  margin-top: var(--flowtenta-space-md);
}

.flowtenta-mt-lg {
  margin-top: var(--flowtenta-space-lg);
}

.flowtenta-mt-xl {
  margin-top: var(--flowtenta-space-xl);
}

.flowtenta-py-lg {
  padding-top: var(--flowtenta-space-lg);
  padding-bottom: var(--flowtenta-space-lg);
}

.flowtenta-hidden {
  display: none !important;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1200px) {
  .flowtenta-hero-title {
    font-size: 6rem;
  }
  
  .flowtenta-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .flowtenta-section {
    padding: 50px 0;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 60%;
  }
  
  .flowtenta-grid-3, 
  .flowtenta-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flowtenta-hero {
    padding-top: 10rem;
  }
  
  .flowtenta-hero .flowtenta-container {
    flex-direction: column;
  }
  
  .flowtenta-hero-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: var(--flowtenta-space-lg);
  }
  
  .flowtenta-hero-buttons {
    justify-content: center;
  }
  
  .flowtenta-testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flowtenta-contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 58%;
  }
  
  body {
    line-height: 1.7;
  }
  
  .flowtenta-mobile-menu {
    display: block;
  }
  
  .flowtenta-nav-list {
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    background-color: var(--flowtenta-white);
    box-shadow: 0 0.5rem 1.5rem rgba(84, 71, 63, 0.1);
    flex-direction: column;
    align-items: center;
    padding: var(--flowtenta-space-md) 0;
    transform: translateY(-150%);
    transition: transform var(--flowtenta-transition-medium);
    z-index: 99;
    border-radius: 0 0 var(--flowtenta-radius-lg) var(--flowtenta-radius-lg);
  }
  
  .flowtenta-nav-list.flowtenta-active {
    transform: translateY(0);
  }
  
  .flowtenta-nav-item {
    margin: var(--flowtenta-space-xs) 0;
  }
  
  .flowtenta-nav-link {
    font-size: 1.8rem;
    padding: var(--flowtenta-space-sm) var(--flowtenta-space-lg);
    display: block;
  }
  
  .flowtenta-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .flowtenta-philosophy-image-container {
    height: 40rem;
    margin-bottom: var(--flowtenta-space-lg);
  }
  
  .flowtenta-testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .flowtenta-footer-col {
    margin-bottom: var(--flowtenta-space-lg);
  }
  
  .flowtenta-schedule-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding: var(--flowtenta-space-xs) var(--flowtenta-space-xs);
  }
  
  .flowtenta-schedule-tab {
    padding: var(--flowtenta-space-sm) var(--flowtenta-space-sm);
    font-size: 1.5rem;
  }
  
  .flowtenta-success-actions {
    flex-direction: column;
  }
  
  .flowtenta-policy-content {
    padding: var(--flowtenta-space-lg) var(--flowtenta-space-md);
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  .flowtenta-container {
    padding: 0 var(--flowtenta-space-sm);
  }
  
  .flowtenta-grid-3, 
  .flowtenta-grid-4 {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 4.5rem;
  }
  
  h2 {
    font-size: 3.6rem;
  }
  
  .flowtenta-hero-title {
    font-size: 4.8rem;
  }
  
  .flowtenta-section {
    padding: var(--flowtenta-space-md) 0;
  }
  
  .flowtenta-card-image {
    height: 22rem;
  }
  
  .flowtenta-contact-form-container {
    padding: var(--flowtenta-space-md);
  }
  
  .flowtenta-mobile-menu.flowtenta-active .flowtenta-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-0.5rem, 0.6rem);
  }
  
  .flowtenta-mobile-menu.flowtenta-active .flowtenta-bar:nth-child(2) {
    opacity: 0;
  }
  
  .flowtenta-mobile-menu.flowtenta-active .flowtenta-bar:nth-child(3) {
    transform: rotate(45deg) translate(-0.5rem, -0.6rem);
  }
  
  .flowtenta-policy-title {
    font-size: 4rem;
  }
  
  .flowtenta-policy-subtitle {
    font-size: 2.8rem;
  }
  
  .flowtenta-success-content {
    padding: var(--flowtenta-space-md);
  }
  .flowtenta-policy-header {
    margin-bottom: var(--flowtenta-space-md);
}
.flowtenta-footer-col {
        margin-bottom: 16px;
    }
}

@media (max-width: 360px) {
  html {
    font-size: 50%;
  }
  
  .flowtenta-container {
    padding: 0 var(--flowtenta-space-xs);
  }

  .flowtenta-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
  }
  
  .flowtenta-hero-title {
    font-size: 4rem;
  }
  
  .flowtenta-hero-text {
    font-size: 1.8rem;
  }
  
  .flowtenta-card-content {
    padding: var(--flowtenta-space-sm);
  }
  
  .flowtenta-price-card {
    padding: var(--flowtenta-space-md) var(--flowtenta-space-sm);
  }
  
  .flowtenta-section-subtitle {
    font-size: 1.8rem;
  }
}
.flowtenta-header  .flowtenta-container {
  position: relative;
}
.flowtenta-mobile-menu{
  position: absolute;
  right: 10px;
  top: 5px;
}