/**
 * Flavor Flavor Theme Styles
 *
 * Exact match to prototipo.html design
 *
 * @package Flavor_Flavor
 * @since   1.0.0
 */

/* ==========================================================================
   CSS Custom Properties (set dynamically via PHP)
   ========================================================================== */

:root {
    --ff-color-primary: #c026d3;
    --ff-color-secondary: #ec4899;
    --ff-color-accent: #a855f7;
    --ff-color-heading: #1f2937;
    --ff-color-body: #4b5563;
    --ff-color-bg-light: #fdf4ff;
    --ff-gradient-start: #fdf4ff;
    --ff-gradient-end: #fce7f3;
    --ff-button-radius: 9999px;

    /* Fuchsia palette matching prototype */
    --ff-fuchsia-50: #fdf4ff;
    --ff-fuchsia-100: #fae8ff;
    --ff-fuchsia-200: #f5d0fe;
    --ff-fuchsia-400: #e879f9;
    --ff-fuchsia-500: #d946ef;
    --ff-fuchsia-600: #c026d3;
    --ff-fuchsia-700: #a21caf;
    --ff-fuchsia-800: #86198f;
    --ff-fuchsia-900: #701a75;

    /* Pink palette */
    --ff-pink-500: #ec4899;
    --ff-pink-600: #db2777;

    /* Slate palette */
    --ff-slate-700: #334155;
    --ff-slate-800: #1e293b;
    --ff-slate-900: #0f172a;

    /* Gray palette */
    --ff-gray-50: #f9fafb;
    --ff-gray-100: #f3f4f6;
    --ff-gray-200: #e5e7eb;
    --ff-gray-300: #d1d5db;
    --ff-gray-400: #9ca3af;
    --ff-gray-500: #6b7280;
    --ff-gray-600: #4b5563;
    --ff-gray-700: #374151;
    --ff-gray-800: #1f2937;
    --ff-gray-900: #111827;

    /* Spacing */
    --ff-spacing-xs: 0.25rem;
    --ff-spacing-sm: 0.5rem;
    --ff-spacing-md: 1rem;
    --ff-spacing-lg: 1.5rem;
    --ff-spacing-xl: 2rem;
    --ff-spacing-2xl: 3rem;
    --ff-spacing-3xl: 4rem;

    /* Typography */
    --ff-font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Shadows */
    --ff-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --ff-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --ff-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --ff-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --ff-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --ff-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --ff-shadow-fuchsia: 0 10px 15px -3px rgb(192 38 211 / 0.2), 0 4px 6px -4px rgb(192 38 211 / 0.2);
    --ff-shadow-fuchsia-lg: 0 20px 25px -5px rgb(192 38 211 / 0.15), 0 8px 10px -6px rgb(192 38 211 / 0.15);

    /* Transitions */
    --ff-transition-fast: 150ms ease;
    --ff-transition: 300ms ease;
    --ff-transition-slow: 500ms ease;

    /* Container */
    --ff-container-max: 1280px;
    --ff-container-padding: 1rem;
}

@media (min-width: 640px) {
    :root {
        --ff-container-padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --ff-container-padding: 2rem;
    }
}

/* ==========================================================================
   Material Symbols Icons
   ========================================================================== */

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Filled variant */
.material-symbols-outlined.filled,
.material-symbols-rounded.filled {
    font-variation-settings: 'FILL' 1;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.scroll-smooth,
html.ff-smooth-scroll {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--ff-font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ff-gray-800);
    background-color: rgba(253, 244, 255, 0.3);
}

body::selection,
body *::selection {
    background-color: var(--ff-fuchsia-200);
    color: var(--ff-fuchsia-900);
}

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

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

a:hover {
    color: var(--ff-color-secondary);
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999999;
    padding: 1rem;
    background: var(--ff-color-primary);
    color: white;
}

.skip-link:focus {
    left: 0;
}

/* ==========================================================================
   Container
   ========================================================================== */

.ff-container {
    width: 100%;
    max-width: var(--ff-container-max);
    margin: 0 auto;
    padding: 0 var(--ff-container-padding);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ff-gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3.75rem; }
    h2 { font-size: 2.25rem; }
}

.ff-text-gradient {
    background: linear-gradient(to right, var(--ff-fuchsia-600), var(--ff-pink-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Prose styles for content */
.ff-prose {
    max-width: 65ch;
}

.ff-prose p {
    margin: 0 0 1.5rem;
}

.ff-prose ul,
.ff-prose ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}

.ff-prose li {
    margin-bottom: 0.5rem;
}

.ff-prose blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--ff-color-primary);
    background: var(--ff-color-bg-light);
    font-style: italic;
}

/* ==========================================================================
   Buttons - Matching prototype exactly
   ========================================================================== */

.ff-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 9999px;
    cursor: pointer;
    transition: all var(--ff-transition);
    transform: translateY(0);
}

.ff-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.ff-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.ff-btn-xl {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.ff-btn-block {
    width: 100%;
}

.ff-btn-primary {
    background: linear-gradient(to right, var(--ff-fuchsia-600), var(--ff-pink-600));
    color: white;
    box-shadow: var(--ff-shadow-lg), 0 4px 14px -3px rgba(192, 38, 211, 0.3);
}

.ff-btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--ff-shadow-xl), 0 8px 20px -4px rgba(192, 38, 211, 0.4);
    color: white;
}

.ff-btn-outline {
    background: transparent;
    border-color: var(--ff-fuchsia-500);
    color: var(--ff-fuchsia-700);
}

.ff-btn-outline:hover {
    background: var(--ff-fuchsia-600);
    border-color: var(--ff-fuchsia-600);
    color: white;
}

.ff-btn-white {
    background: white;
    color: var(--ff-color-primary);
    border-color: transparent;
}

.ff-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--ff-shadow-lg);
    color: var(--ff-color-primary);
}

.ff-btn-ghost {
    background: transparent;
    border-color: transparent;
    color: var(--ff-gray-600);
    border-radius: 0.75rem;
}

.ff-btn-ghost:hover {
    background: white;
    box-shadow: var(--ff-shadow-md);
    border-color: var(--ff-gray-100);
}

/* ==========================================================================
   Badges
   ========================================================================== */

.ff-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    background: var(--ff-fuchsia-100);
    color: var(--ff-fuchsia-700);
    border: 1px solid var(--ff-fuchsia-200);
}

.ff-badge-primary {
    background: linear-gradient(135deg, var(--ff-color-primary), var(--ff-color-secondary));
    color: white;
    border: none;
}

.ff-badge-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    background: var(--ff-fuchsia-100);
    color: var(--ff-fuchsia-700);
    border: 1px solid var(--ff-fuchsia-200);
}

.ff-badge-pulse::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--ff-fuchsia-500);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ff-section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ff-fuchsia-600);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Header - Matching prototype exactly
   ========================================================================== */

.ff-topbar {
    padding: 0.5rem 0;
    color: white;
    font-size: 0.875rem;
}

.ff-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ff-topbar-left,
.ff-topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ff-topbar-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: white;
}

.ff-topbar-item .material-symbols-rounded {
    font-size: 1rem;
}

/* Main Header - Fixed nav like prototype */
.ff-header {
    position: fixed;
    width: 100%;
    z-index: 40;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--ff-shadow-sm);
    transition: all var(--ff-transition);
}

.ff-header-sticky-enabled {
    position: fixed;
    top: 0;
}

.ff-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    gap: 1rem;
}

.ff-site-branding {
    flex-shrink: 0;
}

.ff-site-branding-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
}

.ff-site-branding .ff-site-icon {
    font-size: 1.875rem;
    color: var(--ff-fuchsia-600);
}

.ff-custom-logo img {
    height: var(--logo-height, 50px);
    width: auto;
}

/* Site title and tagline - stacked vertically like prototype */
.ff-site-branding-link > div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.ff-site-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ff-gray-900);
    letter-spacing: -0.025em;
}

.ff-site-tagline {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ff-fuchsia-500);
}

/* Navigation and CTA wrapper - aligned right like prototype */
.ff-header-right {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ff-header-right {
        display: flex;
    }
}

.ff-main-navigation {
    display: flex;
    align-items: center;
}

.ff-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ff-nav-menu li {
    margin: 0;
}

.ff-nav-menu a {
    font-weight: 500;
    color: var(--ff-gray-600);
    transition: color var(--ff-transition-fast);
    white-space: nowrap;
}

.ff-nav-menu a:hover,
.ff-nav-menu .current-menu-item > a {
    color: var(--ff-fuchsia-600);
}

/* Menu item with icon (Area Clienti) */
.ff-nav-menu .menu-item-has-icon > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ff-nav-menu .menu-item-has-icon .material-symbols-rounded {
    font-size: 1.25rem;
}

.ff-header-cta {
    display: block;
}

/* Header CTA button - pill shape like prototype */
.ff-header-cta .ff-btn {
    border-radius: 9999px;
    padding: 0.625rem 1.5rem;
}

.ff-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

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

.ff-menu-toggle .material-symbols-rounded {
    font-size: 1.875rem;
    color: var(--ff-gray-600);
}

.ff-menu-toggle .ff-close-icon {
    display: none;
}

.ff-menu-toggle[aria-expanded="true"] .ff-menu-icon {
    display: none;
}

.ff-menu-toggle[aria-expanded="true"] .ff-close-icon {
    display: block;
}

/* Mobile Menu */
.ff-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--ff-gray-100);
    box-shadow: var(--ff-shadow-lg);
    padding: 1rem;
}

.ff-mobile-menu[aria-hidden="false"] {
    display: block;
}

.ff-mobile-nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ff-mobile-nav-menu li {
    border-bottom: 1px solid var(--ff-gray-100);
}

.ff-mobile-nav-menu a {
    display: block;
    padding: 0.75rem;
    font-weight: 500;
    color: var(--ff-gray-600);
}

.ff-mobile-cta {
    margin-top: 1rem;
}

.ff-mobile-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ff-gray-200);
}

.ff-mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--ff-color-body);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.ff-section {
    padding: 5rem 0;
    position: relative;
}

.ff-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ff-section-header.ff-text-left {
    text-align: left;
}

.ff-section-title {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
    color: var(--ff-gray-900);
}

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

.ff-section-subtitle {
    font-size: 1.125rem;
    color: var(--ff-color-body);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Hero Section - Matching prototype exactly
   ========================================================================== */

.ff-hero {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 3rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .ff-hero {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }
}

/* Background decoration */
.ff-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--ff-fuchsia-50);
    border-bottom-left-radius: 100px;
    display: none;
    z-index: -1;
}

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

.ff-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.ff-hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ff-hero-grid {
        flex-direction: row;
        gap: 3rem;
    }
}

.ff-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .ff-hero-content {
        text-align: left;
        align-items: flex-start;
    }
}

.ff-hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--ff-gray-900);
}

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

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

.ff-hero-title .ff-highlight {
    background: linear-gradient(to right, var(--ff-fuchsia-600), var(--ff-pink-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ff-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ff-color-primary);
    margin-bottom: 0;
}

.ff-hero-description {
    font-size: 1.125rem;
    color: var(--ff-gray-600);
    line-height: 1.7;
    max-width: 32rem;
}

.ff-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .ff-hero-buttons {
        justify-content: flex-start;
    }
}

.ff-hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ff-gray-500);
}

.ff-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ff-hero-trust-item .material-symbols-rounded {
    color: var(--ff-fuchsia-500);
}

.ff-hero-trust-item .material-symbols-rounded.filled {
    font-variation-settings: 'FILL' 1;
}

.ff-hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .ff-hero-stats {
        justify-content: flex-start;
    }
}

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

@media (min-width: 1024px) {
    .ff-stat {
        text-align: left;
    }
}

.ff-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ff-color-primary);
}

.ff-stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--ff-color-body);
}

/* Hero Image */
.ff-hero-image {
    flex: 1;
    position: relative;
}

@media (min-width: 1024px) {
    .ff-hero-image {
        display: flex;
        justify-content: flex-end;
        padding-right: 1rem;
    }
}

@media (min-width: 1280px) {
    .ff-hero-image {
        padding-right: 2rem;
    }
}

.ff-hero-image-wrapper {
    position: relative;
    z-index: 10;
}

.ff-hero-image-wrapper img {
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: var(--ff-shadow-2xl), 0 25px 50px -12px rgba(192, 38, 211, 0.25);
    transition: transform var(--ff-transition-slow);
    animation: blobBounce 10s infinite ease-in-out;
}

@media (min-width: 1024px) {
    .ff-hero-image-wrapper img {
        max-width: 26rem;
    }
}

.ff-hero-image-wrapper img:hover {
    transform: scale(1.02);
}

@keyframes blobBounce {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.ff-hero-image-placeholder {
    width: 100%;
    max-width: 24rem;
    aspect-ratio: 3/4;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ff-fuchsia-100), var(--ff-pink-100));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: var(--ff-shadow-2xl), 0 25px 50px -12px rgba(192, 38, 211, 0.25);
    animation: blobBounce 10s infinite ease-in-out;
}

@media (min-width: 1024px) {
    .ff-hero-image-placeholder {
        max-width: 26rem;
    }
}

.ff-hero-image-placeholder .material-symbols-rounded {
    font-size: 8rem;
    color: var(--ff-fuchsia-300);
}

.ff-hero-image-decoration {
    position: absolute;
    inset: -1rem;
    border: 2px solid var(--ff-color-primary);
    border-radius: 9999px 9999px 50% 50%;
    opacity: 0.3;
    z-index: -1;
}

/* Floating cards like in prototype */
.ff-hero-floating-card {
    position: absolute;
    background: white;
    padding: 0.875rem 1rem;
    border-radius: 1rem;
    box-shadow: var(--ff-shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 20;
    border-left: 4px solid var(--ff-fuchsia-500);
}

.ff-hero-floating-card.ff-card-top {
    top: 2.5rem;
    left: 1rem;
    animation: floatBounce 3s infinite;
}

.ff-hero-floating-card.ff-card-bottom {
    bottom: 2.5rem;
    right: -1rem;
}

@media (min-width: 1024px) {
    .ff-hero-floating-card.ff-card-top {
        left: 2rem;
    }

    .ff-hero-floating-card.ff-card-bottom {
        right: -2rem;
    }
}

.ff-hero-floating-card .ff-card-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.ff-hero-floating-card .ff-card-icon.ff-icon-pink {
    color: var(--ff-pink-500);
}

.ff-hero-floating-card .ff-card-icon.ff-icon-fuchsia {
    color: var(--ff-fuchsia-500);
}

.ff-hero-floating-card .ff-card-label {
    font-size: 0.6875rem;
    color: var(--ff-gray-500);
    line-height: 1.2;
    margin: 0;
}

.ff-hero-floating-card .ff-card-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ff-gray-800);
    line-height: 1.2;
    margin: 0;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll indicator */
.ff-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.ff-scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--ff-shadow-md);
    animation: bounce 2s infinite;
}

.ff-scroll-indicator .material-symbols-rounded {
    font-size: 1.75rem;
    color: var(--ff-color-primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   Metodo Section - Two column card like prototype
   ========================================================================== */

.ff-metodo {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, white, rgba(253, 244, 255, 0.5));
}

.ff-metodo-card {
    background: white;
    border-radius: 2rem;
    box-shadow: var(--ff-shadow-xl), 0 20px 40px -15px rgba(192, 38, 211, 0.1);
    overflow: hidden;
    border: 1px solid var(--ff-fuchsia-100);
}

.ff-metodo-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .ff-metodo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Image side */
.ff-metodo-visual {
    position: relative;
    height: 16rem;
    background: var(--ff-fuchsia-100);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .ff-metodo-visual {
        height: auto;
    }
}

.ff-metodo-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ff-transition-slow);
}

.ff-metodo-card:hover .ff-metodo-visual img {
    transform: scale(1.05);
}

.ff-metodo-visual-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ff-fuchsia-100), var(--ff-pink-100));
}

.ff-metodo-visual-placeholder .material-symbols-rounded {
    font-size: 5rem;
    color: var(--ff-fuchsia-300);
    opacity: 0.7;
}

.ff-metodo-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(112, 26, 117, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

/* When showing placeholder, overlay should have no gradient background (title still visible) */
.ff-metodo-visual--has-placeholder .ff-metodo-visual-overlay {
    background: none;
}

.ff-metodo-visual-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* When placeholder is shown, title should be dark for visibility */
.ff-metodo-visual--has-placeholder .ff-metodo-visual-title {
    color: var(--ff-gray-800);
    text-shadow: none;
}

/* Content side */
.ff-metodo-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .ff-metodo-content {
        padding: 3rem;
    }
}

.ff-metodo-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ff-metodo-label-line {
    height: 1px;
    width: 2rem;
    background: var(--ff-fuchsia-400);
}

.ff-metodo-label-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ff-fuchsia-600);
}

.ff-metodo-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--ff-gray-900);
    margin-bottom: 1rem;
}

.ff-metodo-description {
    font-size: 0.875rem;
    color: var(--ff-gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ff-metodo-description strong {
    color: var(--ff-gray-900);
}

/* Steps */
.ff-metodo-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ff-metodo-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ff-metodo-step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--ff-fuchsia-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ff-fuchsia-600);
    margin-top: 0.25rem;
}

.ff-metodo-step-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ff-gray-900);
    margin: 0 0 0.25rem;
}

.ff-metodo-step-desc {
    font-size: 0.75rem;
    color: var(--ff-gray-500);
    margin: 0;
    line-height: 1.5;
}

/* Old method grid (keeping for compatibility) */
.ff-method-grid {
    display: grid;
    gap: 2rem;
}

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

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

.ff-method-card {
    position: relative;
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 1rem;
}

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

.ff-card-bordered {
    border: 1px solid var(--ff-gray-200);
}

.ff-method-step-number {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ff-color-primary), var(--ff-color-secondary));
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
}

.ff-method-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    color: white;
}

.ff-method-icon .material-symbols-rounded {
    font-size: 32px;
}

.ff-method-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ff-method-desc {
    font-size: 0.9375rem;
    color: var(--ff-color-body);
    margin: 0;
}

.ff-method-connector {
    display: none;
}

@media (min-width: 1024px) {
    .ff-method-connector {
        display: block;
        position: absolute;
        right: -1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--ff-color-primary);
        opacity: 0.5;
    }
}

/* ==========================================================================
   Services Section - Matching prototype card design
   ========================================================================== */

.ff-services {
    padding: 5rem 0;
    background: white;
}

.ff-services-grid {
    display: grid;
    gap: 2rem;
}

.ff-services-grid.ff-columns-2 {
    grid-template-columns: 1fr;
}

.ff-services-grid.ff-columns-3 {
    grid-template-columns: 1fr;
}

.ff-services-grid.ff-columns-4 {
    grid-template-columns: 1fr;
}

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

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

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

/* Service Card - Matching prototype exactly */
.ff-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--ff-gray-100);
    border-radius: 1.5rem;
    padding: 0.5rem;
    box-shadow: var(--ff-shadow-lg);
    transition: all var(--ff-transition);
    overflow: hidden;
}

.ff-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ff-shadow-2xl), 0 20px 40px -15px rgba(192, 38, 211, 0.15);
}

.ff-service-featured {
    border-color: var(--ff-fuchsia-200);
}

.ff-service-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: var(--ff-fuchsia-600);
    border-bottom-left-radius: 0.75rem;
    z-index: 20;
}

/* Service Image */
.ff-service-image-wrapper {
    position: relative;
    height: 12rem;
    border-radius: 1rem;
    overflow: hidden;
}

.ff-service-image-wrapper img,
.ff-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ff-transition-slow);
}

.ff-service-card:hover .ff-service-image-wrapper img,
.ff-service-card:hover .ff-service-image {
    transform: scale(1.1);
}

.ff-service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ff-fuchsia-100), var(--ff-pink-100));
    color: var(--ff-fuchsia-400);
}

.ff-service-image-placeholder .material-symbols-rounded {
    font-size: 3rem;
}

.ff-service-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    color: var(--ff-gray-900);
    box-shadow: var(--ff-shadow-sm);
}

/* Service Content */
.ff-service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ff-service-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ff-service-header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid;
}

.ff-service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.ff-service-icon .material-symbols-rounded {
    font-size: 24px;
}

.ff-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ff-gray-900);
    margin: 0 0 0.5rem;
}

.ff-service-description {
    font-size: 0.875rem;
    color: var(--ff-gray-500);
    flex: 1;
    margin-bottom: 1.5rem;
}

.ff-service-features {
    flex-grow: 1;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.ff-service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--ff-gray-600);
}

.ff-service-features .material-symbols-rounded {
    font-size: 1.125rem;
    color: var(--ff-fuchsia-500);
}

.ff-service-footer {
    margin-top: auto;
}

.ff-service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.ff-service-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.ff-service-duration {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--ff-color-body);
}

/* Service CTA button - outline style like prototype */
.ff-service-cta {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 2px solid var(--ff-fuchsia-500);
    background: transparent;
    color: var(--ff-fuchsia-700);
    font-weight: 600;
    text-align: center;
    display: block;
    transition: all var(--ff-transition);
}

.ff-service-cta:hover {
    background: var(--ff-fuchsia-600);
    border-color: var(--ff-fuchsia-600);
    color: white;
}

/* ==========================================================================
   Booking Section - Split layout with dark sidebar
   ========================================================================== */

.ff-booking {
    padding: 5rem 0;
    background: var(--ff-fuchsia-50);
    scroll-margin-top: 5rem;
}

.ff-booking-container {
    max-width: 64rem;
    margin: 0 auto;
}

.ff-booking-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--ff-shadow-2xl), 0 25px 50px -12px rgba(192, 38, 211, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

@media (min-width: 768px) {
    .ff-booking-card {
        flex-direction: row;
    }
}

/* Dark Sidebar */
.ff-booking-sidebar {
    background: var(--ff-slate-900);
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .ff-booking-sidebar {
        width: 33.333%;
        flex-shrink: 0;
    }
}

.ff-booking-sidebar-content {
    position: relative;
    z-index: 10;
}

.ff-booking-sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

/* Step indicators in sidebar */
.ff-booking-progress {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ff-booking-step-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ff-step-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all var(--ff-transition);
}

.ff-step-circle.ff-step-pending {
    background: var(--ff-slate-700);
    color: var(--ff-slate-400);
}

.ff-step-circle.ff-step-active {
    background: var(--ff-fuchsia-500);
    color: white;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.5);
}

.ff-step-circle.ff-step-complete {
    background: var(--ff-fuchsia-800);
    color: var(--ff-fuchsia-200);
}

.ff-step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ff-slate-300);
}

.ff-step-active .ff-step-label {
    color: white;
}

.ff-step-connector {
    width: 2px;
    height: 1rem;
    background: var(--ff-slate-700);
    margin-left: 0.9375rem;
}

/* Booking Summary */
.ff-booking-summary {
    background: var(--ff-slate-800);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 2rem;
    border: 1px solid var(--ff-slate-700);
    position: relative;
    z-index: 10;
}

.ff-summary-label,
.ff-booking-summary-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ff-slate-400);
    margin-bottom: 0.25rem;
}

.ff-summary-service,
.ff-booking-summary-service {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.ff-summary-price,
.ff-booking-summary-price {
    font-size: 0.875rem;
    font-family: monospace;
    color: var(--ff-fuchsia-400);
}

.ff-summary-date,
.ff-booking-summary-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--ff-slate-300);
    margin-top: 0.5rem;
}

.ff-summary-date .material-symbols-rounded,
.ff-booking-summary-date .material-symbols-rounded {
    font-size: 0.875rem;
}

/* Sidebar decoration */
.ff-booking-decoration,
.ff-booking-sidebar-decoration {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 12rem;
    height: 12rem;
    background: var(--ff-fuchsia-600);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

/* Step line connector */
.ff-step-line {
    width: 2px;
    height: 1rem;
    background: var(--ff-slate-700);
    margin-left: 0.9375rem;
}

/* Main booking content area */
.ff-booking-main {
    flex: 1;
    padding: 2rem;
    background: white;
}

.ff-booking-step {
    display: none;
    height: 100%;
    flex-direction: column;
}

.ff-booking-step.ff-step-visible {
    display: flex;
}

.ff-booking-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ff-gray-900);
    margin-bottom: 1.5rem;
}

/* Date grid */
.ff-date-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .ff-date-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.ff-date-btn {
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--ff-gray-200);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--ff-transition);
}

.ff-date-btn:hover {
    border-color: var(--ff-fuchsia-500);
    background: var(--ff-fuchsia-50);
}

.ff-date-btn.ff-date-selected {
    background: var(--ff-fuchsia-100);
    border-color: var(--ff-fuchsia-500);
    box-shadow: 0 0 0 2px var(--ff-fuchsia-500);
}

.ff-date-day {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ff-gray-500);
}

.ff-date-selected .ff-date-day {
    color: var(--ff-fuchsia-600);
}

.ff-date-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ff-gray-900);
}

.ff-date-selected .ff-date-number {
    color: var(--ff-fuchsia-700);
}

/* Time grid */
.ff-time-label {
    font-weight: 600;
    color: var(--ff-gray-700);
    margin-bottom: 1rem;
}

.ff-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.ff-time-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--ff-gray-200);
    background: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--ff-transition);
}

.ff-time-btn:hover {
    border-color: var(--ff-fuchsia-500);
    color: var(--ff-fuchsia-600);
}

.ff-time-btn.ff-time-selected {
    background: var(--ff-fuchsia-600);
    border-color: var(--ff-fuchsia-600);
    color: white;
}

.ff-time-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Form fields */
.ff-form-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.ff-form-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ff-gray-500);
    margin-bottom: 0.25rem;
}

.ff-form-input {
    width: 100%;
    padding: 0.5rem 1rem;
    background: var(--ff-gray-50);
    border: 1px solid var(--ff-gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all var(--ff-transition-fast);
}

.ff-form-input:focus {
    outline: none;
    border-color: var(--ff-fuchsia-500);
    box-shadow: 0 0 0 3px rgba(192, 38, 211, 0.1);
}

.ff-form-input::placeholder {
    color: var(--ff-gray-400);
}

/* Step actions */
.ff-booking-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 1.5rem;
}

.ff-btn-dark {
    background: var(--ff-gray-900);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--ff-transition);
}

.ff-btn-dark:hover {
    background: var(--ff-gray-800);
}

.ff-btn-dark:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Old booking styles (keeping for compatibility) */
.ff-booking-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Booking steps in sidebar */
.ff-booking-steps {
    display: flex;
    flex-direction: column;
}

.ff-booking-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
    transition: opacity var(--ff-transition);
}

.ff-booking-step.ff-step-active,
.ff-booking-step.ff-step-completed {
    opacity: 1;
}

.ff-step-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    background: var(--ff-slate-700);
    color: var(--ff-slate-400);
    transition: all var(--ff-transition);
}

.ff-booking-step.ff-step-active .ff-step-circle {
    background: var(--ff-fuchsia-500);
    color: white;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.5);
}

.ff-booking-step.ff-step-completed .ff-step-circle {
    background: var(--ff-fuchsia-800);
    color: var(--ff-fuchsia-200);
}

/* Hide check icon by default, show number */
.ff-step-check {
    display: none;
}

.ff-booking-step.ff-step-completed .ff-step-number {
    display: none;
}

.ff-booking-step.ff-step-completed .ff-step-check {
    display: block;
    font-size: 0.875rem;
}

.ff-step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ff-slate-400);
}

.ff-booking-step.ff-step-active .ff-step-label {
    color: white;
}

.ff-booking-step.ff-step-completed .ff-step-label {
    color: var(--ff-fuchsia-300);
}

/* Legacy step number styles for compatibility */
.ff-step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ff-gray-200);
    border-radius: 50%;
    font-weight: 600;
    transition: all var(--ff-transition);
}

.ff-step-active .ff-step-number {
    background: var(--ff-color-primary);
    color: white;
}

.ff-step-completed .ff-step-number {
    background: #22c55e;
    color: white;
}

.ff-booking-widget {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

/* Booking widget integration styles */
.ff-booking-widget .ffb-booking-widget {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ff-booking-widget .ffb-step-content {
    flex: 1;
    display: none !important;
}

.ff-booking-widget .ffb-step-content.active {
    display: flex !important;
    flex-direction: column;
}

/* Ensure proper padding on main area */
.ff-booking-main {
    display: flex;
    flex-direction: column;
}

.ff-booking-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--ff-shadow-lg);
}

.ff-placeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ff-color-bg-light);
    border-radius: 50%;
}

.ff-placeholder-icon .material-symbols-rounded {
    font-size: 40px;
    color: var(--ff-color-primary);
}

.ff-booking-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.ff-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--ff-color-body);
}

.ff-trust-item .material-symbols-rounded {
    color: #22c55e;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.ff-testimonials-grid {
    display: grid;
    gap: 2rem;
}

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

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

.ff-testimonial-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--ff-shadow-md);
}

.ff-testimonial-quote {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.ff-testimonial-rating {
    margin-bottom: 1rem;
}

.ff-stars {
    display: flex;
    gap: 0.125rem;
}

.ff-stars .material-symbols-rounded {
    font-size: 20px;
}

.ff-testimonial-content {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.ff-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ff-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.ff-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ff-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ff-testimonial-name {
    display: block;
    font-weight: 600;
    color: var(--ff-color-heading);
}

.ff-testimonial-label {
    display: block;
    font-size: 0.875rem;
    color: var(--ff-color-body);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.ff-faq-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .ff-faq-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.ff-faq-content .ff-section-header {
    margin-bottom: 2rem;
}

.ff-faq-cta {
    padding: 1.5rem;
    background: var(--ff-color-bg-light);
    border-radius: 1rem;
}

.ff-faq-cta p {
    margin: 0 0 1rem;
    font-weight: 500;
}

.ff-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ff-accordion-item {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
}

.ff-accordion-bordered .ff-accordion-item {
    border: 1px solid var(--ff-gray-200);
}

.ff-accordion-elevated .ff-accordion-item {
    box-shadow: var(--ff-shadow-md);
}

.ff-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.ff-accordion-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ff-color-heading);
    padding-right: 1rem;
}

.ff-accordion-icon {
    flex-shrink: 0;
    transition: transform var(--ff-transition);
}

.ff-accordion-open .ff-accordion-icon {
    transform: rotate(180deg);
}

.ff-accordion-content {
    overflow: hidden;
}

.ff-accordion-body {
    padding: 0 1.25rem 1.25rem;
    color: var(--ff-color-body);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.ff-cta {
    text-align: center;
    overflow: hidden;
}

.ff-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ff-color-primary), var(--ff-color-secondary));
    opacity: 0.9;
}

.ff-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.ff-cta-light {
    color: white;
}

.ff-cta-light .ff-cta-title {
    color: white;
}

.ff-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ff-cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ff-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.ff-cta-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ff-cta-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ff-cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.ff-cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.ff-cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

/* ==========================================================================
   Footer - Dark theme like prototype
   ========================================================================== */

.ff-footer {
    background: var(--ff-slate-900);
    color: white;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.ff-footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
    .ff-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.ff-footer-brand-col {
    grid-column: span 2;
}

@media (max-width: 639px) {
    .ff-footer-brand-col {
        grid-column: span 1;
    }
}

.ff-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ff-footer-brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ff-footer-icon,
.ff-footer-brand .material-symbols-rounded {
    font-size: 1.875rem;
    color: var(--ff-fuchsia-400);
}

.ff-footer-brand-name,
.ff-footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.ff-footer-description {
    color: var(--ff-slate-400);
    max-width: 24rem;
    line-height: 1.7;
}

.ff-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ff-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all var(--ff-transition-fast);
}

.ff-social-link:hover {
    background: var(--ff-fuchsia-600);
    color: white;
}

.ff-footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ff-fuchsia-400);
    margin-bottom: 1rem;
}

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

.ff-footer-menu li {
    margin-bottom: 0.75rem;
}

.ff-footer-menu a {
    color: var(--ff-slate-300);
    transition: color var(--ff-transition-fast);
}

.ff-footer-menu a:hover {
    color: var(--ff-fuchsia-400);
}

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

.ff-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--ff-slate-300);
}

.ff-footer-contact .material-symbols-rounded {
    font-size: 1rem;
    color: var(--ff-fuchsia-400);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.ff-footer-contact a {
    color: var(--ff-slate-300);
}

.ff-footer-contact a:hover {
    color: var(--ff-fuchsia-400);
}

.ff-footer-hours {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--ff-slate-300);
}

.ff-footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.ff-footer-hours-closed {
    opacity: 0.5;
}

.ff-footer-hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.ff-footer-hours-row.ff-hours-closed {
    opacity: 0.5;
}

.ff-footer-cta {
    margin-top: 1.5rem;
}

/* Footer Bottom */
.ff-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--ff-slate-800);
}

.ff-footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .ff-footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.ff-copyright {
    font-size: 0.875rem;
    color: var(--ff-slate-500);
}

.ff-copyright p {
    margin: 0;
}

.ff-footer-legal {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.ff-legal-links {
    display: flex;
    gap: 1rem;
}

.ff-legal-links a {
    font-size: 0.875rem;
    color: var(--ff-slate-500);
}

.ff-legal-links a:hover {
    color: var(--ff-fuchsia-400);
}

/* ==========================================================================
   WordPress Required Classes
   ========================================================================== */

/* Image Alignment */
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

/* Image Captions */
.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--ff-color-body);
    text-align: center;
}

.wp-caption-text {
    text-align: center;
    font-style: italic;
    font-size: 0.875rem;
    color: var(--ff-color-body);
}

/* Gallery */
.gallery {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

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

.gallery-item {
    margin: 0;
}

.gallery-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-caption {
    font-size: 0.75rem;
    color: var(--ff-color-body);
    text-align: center;
    padding: 0.5rem;
}

/* Sticky Post */
.sticky {
    position: relative;
}

.sticky::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--ff-color-primary), var(--ff-color-secondary));
    border-radius: 4px 0 0 4px;
}

.sticky .ff-post-card {
    border-left: 4px solid var(--ff-color-primary);
}

/* Author Comments */
.bypostauthor {
    position: relative;
}

.bypostauthor > .comment-body {
    border-left: 4px solid var(--ff-color-primary);
    background: var(--ff-color-bg-light);
}

/* ==========================================================================
   Comments Section
   ========================================================================== */

.ff-comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ff-gray-200);
}

.ff-comments-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.comment-list .comment {
    margin-bottom: 1.5rem;
}

.comment-body {
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--ff-shadow);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comment-author .avatar {
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 600;
    color: var(--ff-color-heading);
}

.comment-metadata {
    font-size: 0.875rem;
    color: var(--ff-color-body);
}

.comment-metadata a {
    color: inherit;
}

.comment-content {
    margin-bottom: 1rem;
}

.comment-content p {
    margin: 0;
}

.reply a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ff-color-primary);
}

/* Nested Comments */
.children {
    margin: 1rem 0 0 2rem;
    padding: 0;
    list-style: none;
}

/* Comment Form */
.comment-respond {
    margin-top: 2rem;
}

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

.comment-reply-title small {
    display: block;
    font-size: 0.875rem;
    font-weight: normal;
    margin-top: 0.5rem;
}

.comment-form {
    display: grid;
    gap: 1rem;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin: 0;
}

.comment-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--ff-gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color var(--ff-transition-fast);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--ff-color-primary);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin: 0;
}

.form-submit .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--ff-color-primary), var(--ff-color-secondary));
    border: none;
    border-radius: var(--ff-button-radius);
    cursor: pointer;
    transition: all var(--ff-transition-fast);
}

.form-submit .submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--ff-shadow-lg);
}

/* Comments Navigation/Pagination */
.comment-navigation,
.comments-pagination {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--ff-gray-200);
    border-bottom: 1px solid var(--ff-gray-200);
}

.comment-navigation .nav-links,
.comments-pagination .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-navigation .nav-previous a,
.comment-navigation .nav-next a,
.comments-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--ff-color-primary);
    background: var(--ff-color-bg-light);
    border-radius: 0.5rem;
    transition: all var(--ff-transition-fast);
}

.comment-navigation a:hover,
.comments-pagination .page-numbers:hover {
    background: var(--ff-color-primary);
    color: white;
}

.comments-pagination .page-numbers.current {
    background: var(--ff-color-primary);
    color: white;
}

/* No Comments */
.no-comments {
    padding: 2rem;
    text-align: center;
    background: var(--ff-color-bg-light);
    border-radius: 0.75rem;
    color: var(--ff-color-body);
}

/* ==========================================================================
   Blog / Archive
   ========================================================================== */

.ff-content-area {
    padding: var(--ff-spacing-3xl) 0;
}

.ff-content-grid {
    display: grid;
    gap: 3rem;
}

.ff-content-grid.ff-has-sidebar {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .ff-content-grid.ff-has-sidebar {
        grid-template-columns: 2fr 1fr;
    }
}

.ff-archive-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ff-archive-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.ff-archive-subtitle,
.ff-archive-description {
    font-size: 1.125rem;
    color: var(--ff-color-body);
}

.ff-posts-grid {
    display: grid;
    gap: 2rem;
}

/* Utilities */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-out;
}

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

/* ==========================================================================
   Responsive Tweaks
   ========================================================================== */

@media (max-width: 639px) {
    .ff-topbar-left,
    .ff-topbar-right {
        gap: 1rem;
    }

    .ff-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .ff-cta-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .children {
        margin-left: 1rem;
    }

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

    .ff-form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Plugin Integration Overrides
   ========================================================================== */

/* Hide plugin step indicators when embedded in theme (theme has sidebar steps) */
.ff-booking-widget .ffb-steps,
.ff-booking-main .ffb-steps {
    display: none !important;
}

/* Plugin booking widget styling within theme */
.ff-booking-main .ffb-booking-widget {
    max-width: none;
    height: 100%;
}

.ff-booking-main .ffb-step-content {
    height: 100%;
    display: none !important;
}

.ff-booking-main .ffb-step-content.active {
    display: flex !important;
    flex-direction: column;
}

.ff-booking-main .ffb-step-title {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ff-gray-900);
    margin-bottom: 1.5rem;
}

.ff-booking-main .ffb-services-list {
    flex: 1;
}

.ff-booking-main .ffb-service-option {
    border-radius: 0.75rem;
    border: 1px solid var(--ff-gray-200);
}

.ff-booking-main .ffb-service-option:hover {
    border-color: var(--ff-fuchsia-500);
    box-shadow: var(--ff-shadow-md);
}

.ff-booking-main .ffb-service-option.selected {
    border-color: var(--ff-fuchsia-500);
    background: var(--ff-fuchsia-50);
    box-shadow: 0 0 0 2px var(--ff-fuchsia-500);
}

.ff-booking-main .ffb-price-amount {
    color: var(--ff-fuchsia-600);
}

.ff-booking-main .ffb-btn-primary {
    background: linear-gradient(135deg, var(--ff-fuchsia-600), var(--ff-pink-600));
    border-radius: 0.75rem;
    padding: 0.75rem 2rem;
}

.ff-booking-main .ffb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(192, 38, 211, 0.4);
}

.ff-booking-main .ffb-btn-select {
    background: var(--ff-fuchsia-600);
    border-radius: 0.5rem;
}

.ff-booking-main .ffb-btn-select:hover {
    background: var(--ff-fuchsia-700);
}

.ff-booking-main .ffb-calendar-header {
    background: transparent;
}

.ff-booking-main .ffb-calendar-day.selected {
    background: var(--ff-fuchsia-600);
}

.ff-booking-main .ffb-calendar-day.today {
    border-color: var(--ff-fuchsia-600);
}

.ff-booking-main .ffb-time-slot.selected {
    background: var(--ff-fuchsia-600);
    border-color: var(--ff-fuchsia-600);
    color: white;
}

.ff-booking-main .ffb-time-slot.selected:hover {
    background: var(--ff-fuchsia-700);
    border-color: var(--ff-fuchsia-700);
    color: white;
}

.ff-booking-main .ffb-time-slot:hover:not(.disabled):not(.selected) {
    border-color: var(--ff-fuchsia-500);
}

.ff-booking-main .ffb-form-group input:focus,
.ff-booking-main .ffb-form-group textarea:focus {
    border-color: var(--ff-fuchsia-500);
    box-shadow: 0 0 0 3px rgba(192, 38, 211, 0.1);
}

.ff-booking-main .ffb-step-actions {
    margin-top: auto;
    border-top: none;
    padding-top: 1.5rem;
}

.ff-booking-main .ffb-confirmation-icon .material-symbols-outlined {
    color: var(--ff-fuchsia-600);
}

/* Services Grid - 3 columns by default */
.ff-services-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1023px) {
    .ff-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .ff-services-grid {
        grid-template-columns: 1fr;
    }
}
