/*
Theme Name: Lorenamateo Com
Theme URI: https://lorenamateo.com
Author: Antigravity
Author URI: https://google.com
Description: Un tema personalizado para replicar el diseño de Wellmont adaptado a Lorena Mateo.
Version: 1.5
Text Domain: lorenamateo-com
*/

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

:root {
    /* Brand Colors */
    --primary-color: #0d1b3e; /* Dark Blue */
    --tertiary-color: #4b88a2; /* Steel Blue */
    --text-color: #333333;
    --text-light: #ffffff;
    --accent-yellow: #fff5c2;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-accent: 'Instrument Serif', serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 90px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

html {
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    font-weight: 600; 
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}



/* Accessibility */
.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;
}

/* Header */
.site-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-header .logo {
    flex-shrink: 0;
    margin-right: 40px;
    height: 100%;
    display: flex;
    align-items: center;
}

.site-header .logo a {
    display: flex;
    height: 100%;
    align-items: center;
}

.site-header .logo img {
    height: auto;
    max-height: 100%; 
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
    gap: 30px;
}

.mobile-appointment-container {
    display: none;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Updated Header Links - Uppercase & Compact */
.main-navigation a {
    font-family: var(--font-main);
    font-size: 0.75rem; /* Compact size */
    font-weight: 600; /* SemiBold */
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px; /* Wide tracking */
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent-yellow);
}

/* Contact Button */
.header-actions .btn-contact {
    display: inline-block;
    padding: 10px 25px;
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    margin-left: 30px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.header-actions .btn-contact:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle .icon-bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
}

/* Hero Section (Restored) */
.site-content {
    margin-top: var(--header-height);
}

.front-page-content .hero-section {
    position: relative;
    height: calc(100vh - var(--header-height));
    width: 100%;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%; /* Even larger to allow for the 200px shift */
    height: 120%;
    z-index: 0;
    will-change: transform;
    background-color: #ccc; 
}

.hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 22% 35%; /* Mid-point for vertical-alignment */
    transform: scale(1.05);
    animation: heroImageEntry 1.5s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

/* When text is on the left, we push image to show more of the right side */
.hero-layout-left-text .hero-background-image img {
    object-position: 80% 35%; 
    transform: scale(1.05); /* Removed translateX to keep her visible with the new portrait */
    animation-name: heroImageEntryTest;
}

/* Yellow Overlay Container */
.hero-overlay-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-overlay-content-wrapper {
    background: linear-gradient(to right, rgba(255, 245, 194, 0.8), rgba(255, 245, 194, 1));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transform: translateX(100%);
    animation: slideInRight 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.hero-text-content {
    padding: 60px;
    text-align: right;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
    max-width: 650px;
}

.hero-text-content h1 {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary-color);
    font-weight: 400; 
}

.hero-text-content em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
}

.hero-text-content .italic-serif {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1em;
    display: inline;
    margin: 0;
}

/* Methodology Section (Restored) */
.methodology-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--primary-color);
}

/* Organic Background Shape Top-Left */
.methodology-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background-color: var(--primary-color);
    opacity: 0.03;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    pointer-events: none;
    animation: floating-blob 20s infinite alternate ease-in-out;
}

/* Geometric Outline Bottom-Right */
.methodology-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border: 2px solid var(--tertiary-color);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content sits above background */
.methodology-section > * {
    position: relative;
    z-index: 1;
}

@keyframes floating-blob {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, 30px) rotate(5deg); }
}

.methodology-header .intro-text {
    font-family: var(--font-main);
    font-size: 1.2rem;
    line-height: 1.6;
    color: #5a7d9b;
    max-width: 800px;
    margin: 0 auto 20px;
    font-weight: 300;
}

.methodology-header .intro-text .italic-serif {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: #4a6d8b;
}

.methodology-header .section-title {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.methodology-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.method-card {
    position: relative;
    width: 400px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* =========================================
   DECORATIVE SECTION BACKGROUNDS
   ========================================= */

/* =========================================
   DECORATIVE SECTION BACKGROUNDS
   ========================================= */

/* Generic Base for Decorated Sections */
.decorated-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.decorated-section > .container {
    position: relative;
    z-index: 2;
}

/* Base Pseudo-element Styles */
.decorated-section::before,
.decorated-section::after,
.decorated-section > .container::before,
.decorated-section > .container::after {
    pointer-events: none;
    z-index: 0;
    content: '';
    position: absolute;
    transition: all 0.5s ease;
}

/* -- COACHING (Growth & Path) -- */

/* Intro: Floating Leaf/Seed shape top-left */
.page-section-coaching-intro::before {
    top: -50px;
    left: -80px;
    width: 300px;
    height: 300px;
    background-color: var(--tertiary-color);
    border-radius: 80% 20% 55% 45% / 55% 45% 80% 20%;
    opacity: 0.04;
    transform: rotate(-15deg);
}

/* Info: Dashed connection curve middle */
.page-section-coaching-info > .container::before {
    top: 50%;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.06;
    transform: translateY(-50%);
}

/* Areas: Large grounding blob bottom-center */
.page-section-coaching-areas::after {
    bottom: -150px;
    left: 50%;
    width: 1000px;
    height: 600px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.015;
    transform: translateX(-50%);
    filter: blur(80px);
}

/* Method: Concentric circle detail top-right */
.page-section-coaching-method::before {
    top: 20px;
    right: -50px;
    width: 250px;
    height: 250px;
    border: 1px solid var(--tertiary-color);
    border-radius: 50%;
    opacity: 0.05;
    box-shadow: 0 0 0 20px rgba(var(--tertiary-rgb), 0.02);
}

/* CTA: Abstract angle slice */
.page-section-coaching-cta::before {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 70%, rgba(var(--accent-yellow-rgb), 0.05) 70%);
    z-index: -1;
}

/* -- MEDIATION (Balance & Connection) -- */
/* Top-Left: Large connecting circles */
.page-section-mediation::before {
    top: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.04;
}
/* Bottom-Right: Solid grounding organic shape */
.page-section-mediation::after {
    bottom: -80px;
    right: -50px;
    width: 350px;
    height: 300px;
    background-color: var(--tertiary-color);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.06;
    transform: rotate(-10deg);
}
/* Center: Abstract Balance Line */
.page-section-mediation > .container::after {
    top: 50%;
    left: 50%;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translate(-50%, -50%) rotate(-5deg);
    opacity: 0.05;
    z-index: -1;
}

/* -- SERVICES (Process & Flow) -- */
/* Top-Left Intro Decoration: Subtle Curve */
.page-section-services::before {
    top: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    border: 1px solid var(--primary-color);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.03;
    transform: rotate(-15deg);
}

/* Bottom-Right Cards Decoration: Large Organic Bloom */
.page-section-services::after {
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background-color: var(--tertiary-color);
    border-radius: 50%;
    filter: blur(40px); /* Soften edges significantly */
    opacity: 0.04;
}

/* Bottom-Left Decoration: Faint texture near cards */
.page-section-services > .container::before {
    bottom: 50px;
    left: -40px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.06;
    border-radius: 50%;
    z-index: -1;
}

/* -- CONTACT (Communication) -- */
/* Large Speech Bubble Outline Top-Right */
.page-section-contact::before {
    top: -50px;
    right: -20px;
    width: 400px;
    height: 350px;
    border: 2px solid var(--primary-color);
    border-radius: 50% 50% 0 50%;
    opacity: 0.04;
    transform: rotate(10deg);
}
/* Bottom-Left: Expanding Ripples */
.page-section-contact::after {
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border: 1px solid var(--tertiary-color);
    border-radius: 50%;
    box-shadow: inset 0 0 0 40px rgba(0,0,0,0.02); /* Simulating tertiary path */
    opacity: 0.08;
}

/* -- BOOKING (Time & Focus) -- */
/* Center Clock-like Ring */
.page-section-booking::before {
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    border: 1px dashed var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.04;
}
/* Side Accent Blob */
.page-section-booking::after {
    top: 20%;
    left: -50px;
    width: 200px;
    height: 300px;
    background-color: var(--tertiary-color);
    border-radius: 0 50% 50% 0; /* Semi-circle coming from side */
    opacity: 0.06;
}
/* Bottom-Right: Hourglass/Curve hint */
.page-section-booking > .container::before {
    bottom: 0px;
    right: 20px;
    width: 150px;
    height: 150px;
    border-left: 4px double var(--primary-color);
    border-bottom: 4px double var(--primary-color);
    border-radius: 0 0 0 50%;
    opacity: 0.05;
    z-index: -1;
}

.brush-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--tertiary-color);
    z-index: 0;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 1;
    transform: rotate(-2deg);
}

.brush-blue-2 {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(2deg);
    background: var(--tertiary-color);
}

.card-content {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.method-card.psychology .card-content {
    padding-top: 25px; /* Only for left card */
}

.bold-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Specific overrides for method-card context */
.method-card .bold-highlight {
    color: var(--accent-yellow);
}

.method-card .bold-highlight.italic-serif {
    font-size: 1.2em; /* Larger size for better legibility */
    font-weight: 400; /* Instrument Serif has no bold, avoid faux-bold */
    letter-spacing: 0.5px;
    vertical-align: -2px; /* Slight optical alignment adjustment */
}

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

.methodology-footer p {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: #5a7d9b;
    margin-bottom: 30px;
    font-weight: 300;
}

.underline-highlight {
    border-bottom: 2px solid #5a7d9b;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-brush {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-color);
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.5rem;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.btn-brush::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 80%;
    background: #dceef7;
    z-index: -1;
    border-radius: 5px;
    filter: blur(5px);
    opacity: 0.5;
    transition: all 0.3s;
}

.btn-brush:hover::before {
    background: #b3e5fc;
    width: 110%;
}

/* Footer (Restored & Fixed) */
.site-footer {
    background-color: var(--accent-yellow); /* Yellow Background */
    padding: 80px 0 30px;
    color: var(--primary-color); /* Blue Text */
    font-family: var(--font-main);
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; /* 4 Columns */
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

/* Symbol inside info column */
.footer-symbol-img {
    max-height: 80px; 
    width: auto;
    margin-bottom: 20px;
    display: block;
}

/* Footer Info Column: Bio text */
.footer-bio {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Footer Titles (Restored) */
.footer-title {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Footer Lists (Clean Style) */
.footer-column ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a,
.footer-column ul li {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-column ul li a:hover {
    color: #000;
    opacity: 1;
}

/* Social Icons (Font Awesome Style) */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    color: #000;
    opacity: 1;
}

/* Footer Bottom / Site Info (Centered Layout) */
.site-info {
    border-top: 1px solid rgba(13, 27, 62, 0.1); /* Dark border */
    padding: 20px 20px 0; 
    position: relative; /* For absolute logo positioning */
    display: flex;
    justify-content: center; /* Center copyright */
    align-items: center; /* Vertical center */
    min-height: 100px;
}

.site-info img {
    position: static;
    transform: none;
    max-height: 50px; /* Consistent with inline style */
    width: auto;
    display: block;
}

.copyright {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-align: center;
    opacity: 0.6;
}

/* Keyframes (Restored) */
@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes heroImageEntry {
    from { transform: scale(1.1) translateX(2%); }
    to { transform: scale(1.05) translateX(0); }
}

@keyframes heroZoomMobile {
    from { transform: scale(1.5); }
    to { transform: scale(1.1); }
}

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

/* Responsive Styles (Restored) */
@media (max-width: 900px) {
    html, body {
        overflow-x: hidden;
    }
    
    .methodology-section::before {
        display: none !important;
    }

    .site-header { padding: 0 20px 0 0 !important; }
    .main-navigation { display: none; }
    .menu-toggle { display: flex; }
    
    .hero-overlay-container {
        width: 100%;
        position: relative;
        height: auto;
        min-height: auto;
    }
    
    .front-page-content .hero-section {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .hero-background-image {
        position: relative;
        height: 30vh;
        width: 100%;
        top: 0 !important;
        left: 0 !important;
        transform: translate(0) !important;
    }

    .hero-background-image img {
        object-position: center !important;
        transform: scale(1.1) !important;
        animation: heroZoomMobile 1.5s cubic-bezier(0.2, 1, 0.3, 1) forwards !important;
    }
    
    .hero-overlay-content-wrapper {
        transform: none !important;
        animation: none !important;
        clip-path: none !important;
        background: var(--accent-yellow) !important;
        padding: 60px 20px !important;
        width: 100% !important;
        display: block !important;
    }
    
    .hero-text-content {
        padding: 0 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        opacity: 0;
        animation: fadeInUp 1s ease forwards;
        animation-delay: 0.5s;
    }

    .hero-cta-group {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    
    /* Footer Responsive */
    .footer-widgets {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .site-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-bottom: 30px;
    }
    
    .site-info img {
        position: static;
        transform: none;
        margin-bottom: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* -------------------------------------------
   Blog & Single Post Styles (Wellmont Copy)
------------------------------------------- */

.blog-container {
    padding: 100px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr; /* Content 66% - Sidebar 33% */
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog List Items */
.blog-post-item {
    margin-bottom: 80px;
    border-bottom: 1px solid #eee;
    padding-bottom: 60px;
}

.blog-post-item:last-child {
    border-bottom: none;
}

.post-featured-image {
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 4px; /* Subtle radius */
}

.post-featured-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.post-featured-image:hover img {
    transform: scale(1.05);
}

.entry-header {
    margin-bottom: 25px;
}

.entry-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: var(--font-main);
}

.entry-meta span {
    margin-right: 15px;
}

.entry-title {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.entry-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    background-image: linear-gradient(var(--primary-color), var(--primary-color));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 0.3s, color 0.3s;
}

.entry-title a:hover {
    background-size: 100% 1px;
}

.entry-content {
    font-family: var(--font-main);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444; /* Darker for readability */
    margin-bottom: 30px;
    font-weight: 400; /* Regular weight */
}

/* Read More Button - Styled like "Reservar" text buttons */
.btn-read-more {
    font-family: var(--font-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn-read-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-read-more .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 1.1em;
}

.btn-read-more:hover .arrow {
    transform: translateX(5px);
}

/* Sidebar Styles */
.blog-sidebar .widget {
    margin-bottom: 50px;
}

.widget-title {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Search Widget */
.search-form {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.search-field {
    flex-grow: 1;
    border: none;
    padding: 10px 0;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
}

.search-submit {
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* Layout for Categories/Archives */
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    justify-content: space-between;
}

.widget ul li a {
    color: #333;
    transition: color 0.3s;
}

.widget ul li a:hover {
    color: var(--primary-color);
    font-weight: 500;
}

/* Recent Entries Widget */
.widget_recent_entries li {
    flex-direction: column;
    margin-bottom: 20px;
}

.widget_recent_entries a {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.widget_recent_entries .post-date {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tag Cloud */
.tagcloud a {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #eee;
    margin: 0 5px 10px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    border-radius: 0; /* Boxy look */
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 600;
}

.tagcloud a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Sidebar Social */
.sidebar-social {
    display: flex;
    gap: 15px;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s;
}

.sidebar-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* Single Post Specifics */
.single-content .entry-header {
    text-align: center;
    margin-bottom: 50px;
}

.single-content .entry-title {
    font-size: 3.8rem;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 20px;
}

.post-tags {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
}

.tags-label, .share-label {
    font-weight: 600;
    margin-right: 10px;
    color: var(--primary-color);
}

.entry-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Author Box */
.author-box {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 30px;
    margin-bottom: 60px;
    border-left: 3px solid var(--accent-yellow);
}

.author-avatar img {
    border-radius: 50%;
    margin-right: 20px;
}

.author-name {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.author-desc {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.post-navigation a {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
}


/* Responsive Blog */
@media (max-width: 900px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .single-content .entry-title {
        font-size: 2.2rem;
    }
}


/* =========================================
   ABOUT ME PAGE - WELLMONT REPLICA
   ========================================= */
.about-split-container {
    display: flex;
    flex-wrap: wrap;
    min-height: calc(100vh - 90px); /* 90px is header height */
    width: 100%;
    position: relative;
    background: #fff;
    margin-top: 90px; /* Header Height */
}

.about-text-side {
    width: 50%;
    padding: 100px 8% 100px 10%; /* Matches Wellmont spacing */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    order: 1;
}

.about-image-side {
    width: 50%;
    order: 2;
    position: relative;
    overflow: hidden; /* Crucial for scaling effect */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.image-wrapper-hidden {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Subtle scale up for effect */
    transition: transform 1.5s ease;
}

.about-split-container:hover .about-hero-img {
    transform: scale(1.05); /* Zoom out effect on hover or just subtle movement */
}

.about-label {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: static;
    padding: 0;
    background: none;
    z-index: 0;
}

.about-label::before {
    content: '';
    position: static;
    transform: none;
    display: block;
    width: 30px;
    height: 1px;
    background-color: #000;
    box-shadow: none;
    border-radius: 0;
}

.about-title {
    font-family: var(--font-accent);
    font-size: 4.8rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-subtitle {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: #1d1d1d; /* Darker than grey */
    font-weight: 400;
    margin-bottom: 50px;
}

.about-body p {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.8;
    color: #7a7a7a; /* Muted grey */
    margin-bottom: 25px;
    font-weight: 300;
}

.about-body strong {
    font-weight: 600;
    color: #333;
}

/* Quote Style */
.about-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--primary-color);
    border-left: 2px solid var(--accent-yellow);
    padding-left: 25px;
    margin: 35px 0;
    line-height: 1.5;
}

/* Contact Info Area */
.about-footer-info {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.about-contact-details p {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.about-contact-details a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.about-contact-details a:hover {
    border-bottom-color: #333;
}

.about-social-icons {
    display: flex;
    gap: 15px;
}

.about-social-icons a {
    color: #333;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.about-social-icons a:hover {
    color: var(--primary-color);
}

/* =========================================
   SECTION 2: MODERN PSYCHOLOGY STYLE
   ========================================= */
.about-secondary-section {
    position: relative;
    padding: 120px 0;
    background-color: #fbfbfb;
    overflow: hidden;
}

.decorative-pattern-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9IiNjY2MiIG9wYWNpdHk9IjAuMiIvPjwvc3ZnPg=='); /* Simple dot pattern placeholder */
    z-index: 0;
    opacity: 0.5;
}

.about-secondary-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-label-centered {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 12px 25px;
}

.section-label-centered::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 55% 45% 40% 60% / 50% 40% 60% 50%;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.section-label-centered::after {
    display: none;
}

.modern-psychology-title {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-secondary-text p {
    font-family: var(--font-accent); /* Serif for this section? Or keep Sans but distinct? Reference seems Serif heavy for body or large text. Let's stick to Sans but larger/lighter or Serif if requested. User said "Modern psychology" block. */
    /* Looking at Wellmont Modern Psychology block, it's actually Sans-Serif, clean, justified or left aligned. */
    font-family: var(--font-main);
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
    font-weight: 300;
}

.highlight-text {
    font-size: 1.3rem !important;
    color: var(--primary-color) !important;
    font-weight: 400 !important;
    margin-top: 40px;
    border-left: 3px solid var(--accent-yellow);
    padding-left: 30px;
    text-align: left; /* Make this standout left-aligned */
}

.decorative-element-bottom {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}
/* Orphaned properties
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: #1d1d1d; 
    font-weight: 400;
    margin-bottom: 50px;
*/

.about-body p {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.8;
    color: #7a7a7a; /* Muted grey */
    margin-bottom: 25px;
    font-weight: 300;
}

/* Quote Style */
.about-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--primary-color);
    border-left: 2px solid var(--accent-yellow);
    padding-left: 25px;
    margin: 35px 0;
    line-height: 1.5;
}

/* Contact Info Area */
.about-contact-info {
    margin-top: 40px;
    margin-bottom: 0px;
    font-family: var(--font-main);
    color: #7a7a7a;
    font-size: 15px;
}

.about-contact-info p {
    margin-bottom: 8px;
}

.about-contact-info strong {
    color: #1d1d1d;
    font-weight: 600;
    margin-right: 5px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .about-text-side, 
    .about-image-side {
        width: 100%;
        order: unset; /* Stack naturally */
    }
    
    .about-image-side {
        height: 500px;
        order: 1; /* Image Top */
    }

    .about-text-side {
        order: 2; /* Text Bottom */
        padding: 60px 30px;
    }

    .about-title {
        font-size: 3.5rem;
    }
}

/* =========================================
   NEW HEADER LAYOUT (Left Align + Right CTA)
   ========================================= */
.site-header {
    background-color: var(--primary-color);
    padding: 0 40px 0 10px;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Override default nav styles */
.site-header .main-navigation {
    justify-content: flex-start; /* Align left */
    margin-left: 0;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    color: #fff; /* Ensure white text */
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent-yellow);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-appointment-link {
    display: flex;
    flex-direction: row; /* Side by side */
    align-items: center;  /* Vertically centered */
    gap: 12px;
    text-decoration: none;
}


.header-appointment-link .link-title {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.header-appointment-link:hover .link-title {
    color: var(--accent-yellow);
    border-bottom-color: var(--accent-yellow);
}

/* =========================================
   COUNSELING HOME STYLE (Coaching / Mediacion)
   ========================================= */
.counseling-hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f9f9f9;
    margin-top: var(--header-height);
    overflow: hidden;
}

.counseling-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.counseling-hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.85);
    padding: 60px 80px;
    max-width: 700px;
}

.counseling-title {
    font-family: var(--font-accent);
    font-size: 4rem !important;
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1;
}

.counseling-subtitle {
    font-family: var(--font-main);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 0;
    display: block;
    position: static;
    padding: 0;
    background: none;
    z-index: 0;
    font-weight: 400;
}

.counseling-subtitle::before {
    display: none;
}

.counseling-intro {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.intro-icon-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--primary-color); /* Changed to primary blue for contrast */
}

.intro-icon-separator i {
    font-size: 2rem; /* Larger for visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}



.intro-icon-separator .line {
    width: 40px;
    height: 1px;
    background-color: #ddd;
}

.section-title-large {
    font-family: var(--font-accent);
    font-size: 3rem !important;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

.signature-block {
    margin-top: 50px;
    text-align: center;
}

.counseling-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    padding: 0 40px;
}

.info-card {
    text-align: left;
    padding: 50px;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.card-number {
    font-family: var(--font-accent);
    font-size: 2.2rem; /* Adjusted for this container */
    color: var(--accent-yellow);
    opacity: 1; /* Was 0.6 */
    margin-bottom: 25px;
    line-height: 1;
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 15px 20px;
}

.card-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    width: 80px; /* Specific size for numbers */
    height: 80px;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%; /* Slightly rounder/blobby */
    box-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.card-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 10px;
}

.card-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg); /* Slightly different rotation */
    width: 65px;
    height: 65px;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; /* Organic shape */
    box-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.card-icon-wrapper .card-icon {
    /* filter: brightness(0) invert(1); -> Removed, using white logo now */
    opacity: 0.9;
    position: relative; /* Ensure z-index works if needed */
    z-index: 2;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.counseling-method-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.row-flex {
    display: flex;
    gap: 80px;
    align-items: stretch;
}

.col-text { flex: 1; }
.col-image { flex: 1; min-height: 500px; }

.method-title {
    font-family: var(--font-accent);
    font-size: 3rem !important;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.method-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-scroll-track {
    position: relative;
    height: 200vh;
    background-color: #f4f7f6;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    overflow: visible;
}

.method-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    display: inline-block;
    font-family: var(--font-accent);
}

/* =========================================
   SERVICES STYLE (Grid)
   ========================================= */
.services-hero {
    background-color: #fff;
    padding: 180px 0 80px; 
    text-align: center;
}

.services-page-title {
    font-family: var(--font-accent);
    font-size: 4rem !important;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-page-subtitle {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-grid-item {
    background: #fff;
    text-align: left;
    transition: transform 0.3s ease;
}

.service-grid-item:hover {
    transform: translateY(-5px);
}

.service-img-holder {
    width: 100%;
    height: 280px; /* Fixed height for consistency */
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #f0f0f0;
}

.service-item-content {
    padding: 0 15px;
}

.item-title {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: var(--primary-color);
}

.item-desc {
    font-size: 1rem;
    color: #777;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(13, 27, 62, 0.3);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}
.btn-text:hover {
    color: #000;
    border-color: #000;
}

/* Responsive Styles for New Pages */
@media (max-width: 900px) {
    .site-header { padding: 0 20px; }
    
    .header-left { gap: 15px; }
    .site-header .logo img { max-width: 180px; }
    
    .menu-toggle { display: flex; } /* Show menu toggle */
    
    .site-header .main-navigation { 
        display: none; 
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--primary-color);
        padding: 30px;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 100;
        text-align: center;
    } 
    
    .site-header .main-navigation.toggled { 
        display: block; 
    }
    
    .site-header .main-navigation ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-right { margin-left: auto; gap: 15px; }
    .header-right > .header-appointment-link { display: none; } 
    
    .mobile-appointment-container {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-appointment-container .header-appointment-link {
        display: flex;
    }

    .counseling-info-grid,
    .row-flex,
    .services-grid-layout {
        grid-template-columns: 1fr !important;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px !important;
    }

    /* Reduce spacing between blocks as requested */
    .page-section-coaching-areas,
    .page-section-mediation {
        padding-bottom: 20px !important;
    }
    .counseling-method-section {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .col-image { order: -1; height: 180px !important; min-height: 180px !important; }
    .col-image .image-placeholder { min-height: 180px !important; height: 180px !important; }
    
    /* Section Headers Fix (Less Altura) */
    .counseling-hero-section {
        height: 20vh !important;
        min-height: 150px !important;
    }
    .counseling-hero-content {
        padding: 15px 20px !important;
        max-width: 90% !important;
    }

    .counseling-title { font-size: 2.2rem !important; }
    .section-title-large { font-size: 2.2rem !important; }
    .services-page-title { font-size: 2.2rem !important; }
    
    .counseling-info-grid {
        max-width: 100% !important;
        width: 100% !important;
        gap: 15px !important;
        padding: 0 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .info-card {
        padding: 40px 25px !important;
        width: 100% !important;
        min-height: auto !important;
        transform: none !important; /* Disable reveal offsets */
        opacity: 1 !important;
        margin-bottom: 0 !important;
    }
    
    /* Disable specifically the reveal-left/right offsets */
    .reveal-left, .reveal-right {
        transform: none !important;
    }
}

/* Specific fix for Services Timeline on Mobile */
@media (max-width: 768px) {
    .process-scroll-track {
        height: auto !important;
        padding-bottom: 50px;
    }
    .process-sticky-container {
        position: relative !important;
        height: auto !important;
        top: 0 !important;
        padding: 40px 0 !important;
    }
    .process-steps-grid {
        padding-top: 20px;
        gap: 15px !important;
    }
    /* Vertical line for mobile */
    .timeline-visual {
        left: 30px !important;
        right: auto !important;
        width: 4px !important;
        height: calc(100% - 100px) !important;
        top: 80px !important;
    }
    /* Timeline progress line on mobile */
    .timeline-progress {
        width: 4px !important;
    }
}

/* =========================================
   CONTACT PAGE STYLE
   ========================================= */
.contact-hero {
    background-color: #f9f9f9;
    background-image: url('assets/images/contact-hero.png');
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px; 
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.contact-page-title {
    font-family: var(--font-accent);
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-page-subtitle {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Blocks (3 Columns) */
.contact-info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 80px 0;
}

.contact-block-item {
    padding: 40px 20px;
    background: #f8f8f8; /* Light gray contrast */
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-block-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #fff;
    border-color: transparent;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-block-item h4 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-block-item p, 
.contact-block-item a {
    color: #777;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-block-item a:hover {
    color: var(--primary-color);
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 80px;
}

.contact-form-title {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-form-subtitle {
    font-size: 1rem;
    color: #777;
    margin-bottom: 40px;
}

.clean-contact-form .form-group {
    margin-bottom: 20px;
}

.form-control-custom {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 0; /* Sharp edges */
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
}

.clean-contact-form textarea.form-control-custom {
    min-height: 150px;
    resize: vertical;
}

.clean-contact-form .cta-button.dark {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.clean-contact-form .cta-button.dark:hover {
    background-color: #000;
}

@media (max-width: 768px) {
    .contact-info-blocks {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   404 ERROR PAGE
   ========================================= */
.error-404-container {
    padding: 150px 0 100px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

.error-404-title {
    font-family: var(--font-accent);
    font-size: 8rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.error-404-subtitle {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 40px;
}

.error-404-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #888;
}

/* =========================================
   APPOINTMENTS (Citas) PAGE
   ========================================= */
.booking-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.booking-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.booking-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.booking-header h3 {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.booking-header .price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.booking-header .price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}

.booking-body p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.booking-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    text-align: left;
}

.booking-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
    font-size: 0.9rem;
}

.booking-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.cta-button.full-width {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 4px;
}

.cta-button.full-width:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.cta-button.dark.full-width {
    background-color: var(--primary-color);
    color: #fff;
}

.cta-button.dark.full-width:hover {
    background-color: #000;
}

/* Responsive Booking */
@media (max-width: 900px) {
    .booking-options-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .booking-card.featured {
        transform: none;
    }
    .booking-card.featured:hover {
        transform: translateY(-5px);
    }
}


/* =========================================
   EASY BOOKED CALENDAR CUSTOM STYLES (CLEANED)
   ========================================= */

/* 1. Calendar Header & Navigation */
.abs-calendar-header {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
}

.abs-calendar-header tr th {
    background-color: var(--primary-color) !important;
    border: none !important;
    padding: 20px 0 !important;
    display: table-cell !important;
    text-align: center !important;
    vertical-align: middle !important;
    position: relative !important;
}

.abs-month-name {
    font-family: var(--font-accent);
    color: #fff !important; 
    font-size: 2.2rem !important;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 1 !important;
    display: inline-block;
}


/* Nav Arrows - Handle BOTH class naming conventions */
.abs-page-calendar-button {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: 40px !important;
    width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    z-index: 10;
}

/* Left Arrow */
.abs-page-calendar-button.abs-prev-month,
.abs-page-calendar-button.abs-page-left { 
    left: 10px !important; 
    right: auto !important; /* Safety */
}

/* Right Arrow */
.abs-page-calendar-button.abs-next-month,
.abs-page-calendar-button.abs-page-right { 
    right: 10px !important; 
    left: auto !important; /* Safety */
}

.abs-page-calendar-button i {
    color: #fff !important;
    font-size: 1.2rem;
    opacity: 0.8;
    line-height: 1 !important;
}

/* Day Names (Mon, Tue...) */
.abs-days th, .abs-days tr {
    background-color: #1a334a !important; 
    color: #fff !important;
    text-align: center !important;
    padding: 15px 0 !important;
    display: table-cell !important;
    border-bottom: 2px solid var(--accent-yellow) !important; /* Yellow Underline */
}

/* 2. Calendar Grid & Cells */
.abs-booked-calendar td {
    border: 1px solid #f0f0f0 !important;
    padding: 0 !important;
    height: 60px;
    position: relative;
    background-color: transparent !important;
    box-shadow: none !important; /* Kill green shadow */
    outline: none !important;
}

/* Kill pseudo-elements that cause ghost borders */
.abs-booked-calendar td::before, .abs-booked-calendar td::after,
.abs-booked-calendar .abs-date::before, .abs-booked-calendar .abs-date::after {
    display: none !important;
    content: none !important;
}

/* 3. Date Numbers */
.abs-booked-calendar .abs-date {
    font-family: var(--font-main);
    color: #333 !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    line-height: 40px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 5px auto !important;
    border-radius: 50% !important;
    font-weight: 500;
    z-index: 10;
    position: relative;
    border: 2px solid transparent !important;
    background-color: transparent;
    transition: all 0.3s;
    box-shadow: none !important;
}

/* 4. Past & Disabled Dates */
.abs-booked-calendar td.is-past .abs-date,
.abs-booked-calendar td.abs-past-date .abs-date,
.abs-booked-calendar td.past .abs-date,
.abs-booked-calendar td.abs-disabled .abs-date {
    color: #e0e0e0 !important; /* Almost invisible */
    opacity: 0.5 !important;
    pointer-events: none !important;
    cursor: default !important;
    background: transparent !important;
}

/* Future No Sessions */
.abs-booked-calendar td.is-future.abs-disabled .abs-date,
.abs-booked-calendar td.is-future.disabled .abs-date {
    color: #999999 !important; /* Intermediate gray */
    opacity: 1 !important;
    cursor: default !important;
}

/* Future Available - ENSURE CLICKABLE */
.abs-booked-calendar td:not(.abs-disabled):not(.disabled):not(.past):not(.is-past):not(.abs-past-date) .abs-date,
.abs-booked-calendar td:not(.abs-disabled):not(.disabled):not(.past):not(.is-past):not(.abs-past-date) {
    color: #000000 !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* 5. Today State */
.abs-booked-calendar td.today,
.abs-booked-calendar td.abs-today,
.abs-booked-calendar td.is-today-processed {
    background-color: var(--accent-yellow) !important; /* Full Cell Yellow */
    opacity: 1 !important;
}
.abs-booked-calendar td.today .abs-date,
.abs-booked-calendar td.abs-today .abs-date,
.abs-booked-calendar td.is-today-processed .abs-date {
    color: #333 !important;
    font-weight: 700 !important;
}

/* 6. Hover State */
.abs-booked-calendar td:hover {
    background-color: transparent !important; /* Keep cell white/transparent */
}
.abs-booked-calendar td:hover .abs-date {
    background-color: var(--accent-yellow) !important; /* Circle Yellow */
    color: var(--tertiary-color) !important;
    border-radius: 50% !important;
    cursor: pointer;
    font-weight: 700 !important;
}

/* 7. Active / Selected State */
/* 7. Active / Selected State - CIRCLE FIX */
.abs-today-active .abs-date, 
.abs-booked-calendar td.abs-data.active .abs-date,
.abs-booked-calendar td.abs-active .abs-date,
.abs-booked-calendar td.active .abs-date {
    background-color: var(--accent-yellow) !important;
    color: var(--tertiary-color) !important;
    border-radius: 50% !important;
    font-weight: 700;
    
    /* Strict Dimensions for Circle */
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    line-height: 30px !important;
    
    /* Centering */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important; /* Centered in cell */
}
.abs-booked-calendar td.active {
    background-color: #fff !important; /* Ensure cell behind circle is white */
}

/* 8. Dropdowns & Modals (FORCE WHITE) */
.abs-booking-wrapper,
.abs-booking-content, 
.abs-book-form,
.abs-dropdown, 
.easy-booked-details,
.abs-wrapper,
.abs-booking-container,
.single-event-container,
.eb-popup,
div[class*="abs-booking"] {
    background-color: #fff !important;
    background: #fff !important;
    border: 1px solid #eee !important;
}

/* Fix Children Transparency */
.abs-booking-wrapper > div,
.abs-booking-content > div {
    background-color: transparent !important;
}

/* Text Colors in Dropdown */
.abs-booking-wrapper p, .abs-booking-wrapper h3, .abs-booking-wrapper div, .abs-booking-wrapper span {
    color: #333 !important;
}

/* 9. Booking List / Timeslots - SIDE BY SIDE LAYOUT */
.abs-bookme-timeslot {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important; /* Force side-by-side */
    border: 1px solid #eee !important;
    border-left: 4px solid var(--primary-color) !important;
    background: #fff !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px !important;
    padding: 25px 30px !important;
    transition: transform 0.3s, box-shadow 0.3s;
}

.abs-bookme-timeslot:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Left side: Time & Spaces */
.abs-bookme-time {
    flex: 1 !important; /* Take up remaining space */
    text-align: left !important;
    margin-bottom: 0 !important;
    padding-right: 20px !important; /* Space between text and button */
}

.abs-bookme-timeslot-title {
    color: var(--primary-color) !important;
    font-family: var(--font-accent) !important;
    font-size: 1.5rem !important;
    margin-bottom: 5px !important;
    display: block;
}

.abs-bookme-time span {
    color: #666 !important;
    font-size: 0.95rem;
    display: block; /* Ensure they stack nicely inside the left col */
    margin-bottom: 5px;
}

.abs-bookme-spaces {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(30, 58, 82, 0.05);
    display: inline-block !important; /* Keep as badge */
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 5px;
}

/* Right side: Button */
.abs-bookme-timeslot-button, 
.ab-book-button, 
.abs-book-form-btn button,
.abs-book-form-btn {
    align-self: center !important;
    margin: 0 !important; /* Remove any margins pushing it down */
    flex-shrink: 0 !important; /* Prevent squishing */
}

.abs-bookme-timeslot-button, 
.ab-book-button, 
.abs-book-form-btn button {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    font-family: var(--font-main) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    border-radius: 0 !important; 
    padding: 12px 30px !important;
    transition: all 0.3s !important;
    border: 1px solid var(--primary-color) !important;
    cursor: pointer;
    display: inline-block !important;
}

.abs-bookme-timeslot-button:hover, 
.ab-book-button:hover,
.abs-book-form-btn button:hover {
    background-color: #fff !important;
    color: var(--primary-color) !important;
}

/* Mobile Responsive Override */
@media (max-width: 768px) {
    .abs-bookme-timeslot {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .abs-bookme-time {
        margin-bottom: 20px !important;
        padding-right: 0 !important;
    }
    .abs-bookme-timeslot-button, 
    .ab-book-button, 
    .abs-book-form-btn button,
    .abs-book-form-btn {
        width: 100% !important;
        text-align: center !important;
    }
}

/* 10. Modals */
.abs-booked-modal-content {
    border-radius: 4px !important;
    font-family: var(--font-main) !important;
    border-top: 6px solid var(--accent-yellow);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
    background: #fff !important;
}

.abs-booked-header-modal {
    padding: 20px 30px !important;
    border-bottom: 1px solid #eee;
}

.abs-booked-header-modal h5 {
    color: var(--primary-color) !important;
    font-family: var(--font-accent) !important;
    font-size: 1.8rem !important;
    margin: 0 !important;
}

.abs-book-form-group label {
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px !important;
    display: block;
}

.abs-book-form-group input,
.abs-book-form-group select,
.abs-book-form-group textarea {
    border: 1px solid #ddd !important;
    padding: 12px !important;
    border-radius: 0 !important;
    width: 100% !important;
    font-family: var(--font-main) !important;
    color: #333 !important;
}

.abs-book-form-group input:focus,
.abs-book-form-group select:focus,
.abs-book-form-group textarea:focus {
    border-color: var(--primary-color) !important;
    outline: none !important;
}

.abs-modal-close {
    color: #999 !important;
    top: 25px !important;
    right: 25px !important;
    font-size: 24px !important;
    transition: color 0.3s;
}

.abs-modal-close:hover {
    color: var(--primary-color) !important;
}

/* Number in cell size override */
.abs-number {
    font-size: 1.1rem !important;
}
/* Fully Booked Wrapper */
.abs-fully-booked--wrapper {
    background-color: #f9f9f9 !important;
    pointer-events: none;
    opacity: 0.5;
}

/* =========================================
   GENERIC CTA BUTTONS (Moved out of Calendar Block)
   ========================================= */
.hero-cta-group .cta-button {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}
.cta-button.primary:hover {
    background-color: var(--tertiary-color);
    border-color: var(--tertiary-color);
    color: #fff;
}

.cta-button.outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.cta-button.outline:hover {
    background-color: transparent;
    border-color: var(--tertiary-color);
    color: var(--tertiary-color);
}


/* =========================================
   COMMENTS SECTION
   ========================================= */

#comments {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.comments-title,
#reply-title {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    display: block;
}

#reply-title small {
    font-size: 1rem;
    float: right;
    margin-top: 10px;
}

#reply-title small a {
    color: #999;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
}

.comment-list .comment {
    margin-bottom: 40px;
}

.comment-body {
    position: relative;
    padding-left: 80px; /* Space for avatar */
}

/* Avatar */
.comment-list .avatar {
    position: absolute;
    top: 5px;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Comment Meta */
.comment-meta {
    margin-bottom: 15px;
}

/* Fix for author name double appearance if theme outputs it twice */
.comment-author {
    display: flex;
    flex-direction: column;
}

.comment-author .fn {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--primary-color);
    font-style: normal;
}

.comment-metadata {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-metadata a {
    color: #999;
    text-decoration: none;
}

/* Comment Content */
.comment-content {
    font-family: var(--font-main);
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.comment-content p {
    margin-bottom: 15px;
}

/* Reply Link */
.reply {
    margin-top: 10px;
}

.reply a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.reply a:hover {
    color: var(--accent-yellow);
    border-bottom-color: var(--accent-yellow);
}

/* Respond Form */
#respond {
    background: #fbfbfb;
    padding: 50px;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-top: 40px;
}

.comment-notes,
.logged-in-as {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 25px;
}

.comment-form p {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: all 0.3s;
    border-radius: 0;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

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

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.comment-form-cookies-consent input {
    width: auto !important;
    margin-right: 10px;
}

.comment-form-cookies-consent label {
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: #666;
    font-size: 0.95rem;
}

/* Submit Button */
.form-submit {
    margin-bottom: 0;
    margin-top: 30px;
}

.form-submit .submit {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 15px 40px;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.form-submit .submit:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* =========================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================= */

/* Contact Info Blocks Grid */
.contact-info-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns on Desktop */
    gap: 30px;
    margin-bottom: 60px;
    margin-top: -60px; /* Pull up to overlap hero slightly or just sit nicely */
    position: relative;
    z-index: 5;
}

.contact-block-item {
    background: #fff;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft shadow */
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.contact-block-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-block-item h4 {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-block-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-block-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-block-item a:hover {
    color: var(--accent-yellow);
}

/* Social Icons in Block */
.contact-block-item .social-icons a {
    color: var(--primary-color);
    margin: 0 5px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.contact-block-item .social-icons a:hover {
    color: var(--accent-yellow);
}

/* Responsive Contact Blocks */
@media (max-width: 900px) {
    .contact-info-blocks {
        grid-template-columns: repeat(2, 1fr); /* 2 cols on Tablet */
        margin-top: 0;
        padding-top: 50px;
    }
}

@media (max-width: 600px) {
    .contact-info-blocks {
        grid-template-columns: 1fr; /* 1 col on Mobile */
    }
}
/* Process Timeline Styles */
.process-scroll-track {
    height: 350vh; /* Enforces scrolling distance on desktop */
}
.process-section {
    position: relative;
    padding: 20px 0;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2; /* Ensure steps are above the line */
    text-align: center;
}

.process-step {
    padding: 0 10px;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff; /* Mask the line behind */
    border-radius: 50%;
    font-family: var(--font-accent);
    font-size: 2rem;
    color: #888; /* Inactive color */
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    border: 2px solid #d4d4d4;
    transition: all 0.4s ease;
}

.process-step.active .step-number {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.process-step.active .step-title {
    opacity: 1;
}

.step-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Timeline Visual Lines */
.timeline-visual {
    position: absolute;
    top: 50px; /* Aligns with roughly the center of the step number (padding-top 20 + 30px center) if container has padding */
    left: 0; 
    right: 0; 
    height: 4px;
    z-index: 1;
    /* We want the line to span from center of first to center of last */
}

/* Compensate for container padding if any */
/* Actually, let's use calc for precision or just visual adjustment during dev */
/* Left: 1 column is 25%. Center is 12.5%. */

.timeline-track {
    width: 100%;
    height: 100%;
    /* Dashed line effect */
    background-image: linear-gradient(to right, #ddd 50%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 15px 2px;
    background-repeat: repeat-x;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-progress {
    width: 0%;
    height: 3px; /* Slightly thicker than dash? or same */
    background-color: var(--tertiary-color); /* The "red"/highlight line */
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: width 0.05s linear; /* Smooth scrolling update */
    z-index: 2;
}

/* Responsive Vertical Timeline for Mobile */
@media (max-width: 768px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
        padding-left: 0;
    }

    .process-step {
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 5px 20px;
        padding: 0;
        align-items: start;
        position: relative;
    }

    .step-number {
        grid-column: 1;
        grid-row: 1 / 3;
        margin-bottom: 0;
    }

    .step-title {
        grid-column: 2;
        grid-row: 1;
        margin-top: 15px; /* Adjust to align with the circle visually */
        margin-bottom: 5px;
    }

    .step-desc {
        grid-column: 2;
        grid-row: 2;
    }

    .step-peek-icon {
        left: 30px; /* Center of the 60px left column */
        top: 30px; /* Center vertically within the 60px row */
    }

    /* Vertical Line adjustments */
    .timeline-visual {
        width: 4px;
        height: auto;
        top: 50px; /* Start at center of first number */
        bottom: 50px; /* End before last text leaks */
        left: 30px; /* Center of 60px width number */
        right: auto;
    }

    .timeline-track {
        width: 2px;
        height: 100%;
        background-image: linear-gradient(to bottom, #ddd 50%, rgba(255,255,255,0) 0%);
        background-size: 2px 15px;
        background-repeat: repeat-y;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }

    .timeline-progress {
        width: 3px;
        height: 0%;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        transition: height 0.05s linear;
    }
}

/* Timeline Celebration/Explosion Animation */
.step-number.celebrate {
    animation: success-pulse 0.6s ease-out forwards;
}

.step-number.celebrate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--tertiary-color);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    z-index: -1;
    animation: ripple 0.8s ease-out forwards;
}

/* Second wave removed for subtlety */


/* Confetti-like particles (CSS only, simplified) */
.process-step[data-step="4"] .step-number {
    overflow: visible; /* Allow particles to fly out */
}

@keyframes success-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--tertiary-color-rgb), 0.2); }
    50% { transform: scale(1.15); box-shadow: 0 0 15px 5px rgba(255, 100, 100, 0); } /* Less intense glow */
    100% { transform: scale(1.05); } /* Settles slightly larger */
}

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

/* Step Peek Icon Animation (Finish Flag & Others) */
.step-peek-icon {
    position: absolute;
    top: 30px; /* Center vertically on the circle */
    left: 50%; /* Center horizontally by default (desktop) */
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    color: var(--primary-color);
    font-size: 1.8rem;
    z-index: 10; /* Ensures it is above everything on mobile (desktop overrides to 1) */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.process-step.active .step-peek-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
    .step-peek-icon {
        left: 30px !important; /* Center on the mobile layout grid column */
    }
    .process-step.active .step-number {
        color: transparent; /* Hides the number text on mobile when icon appears */
    }
}

@media (min-width: 769px) {
    .step-peek-icon {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1; /* Visible but hidden by z-index */
        z-index: 1; /* Behind step number (z-index 2) */
    }

    .process-step.active .step-peek-icon {
        opacity: 1;
        transform: translate(25px, -55px) rotate(20deg) scale(1.1);
    }
}

/* Waving animation specifically for the flag icon */
.process-step.active .step-peek-icon.flag i {
    display: inline-block;
    transform-origin: bottom left; /* Pivot around the stick base */
    animation: wave-flag 2s infinite ease-in-out;
}

@keyframes wave-flag {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

/* Ensure step number is on top */
.process-step[data-step="4"] .step-number {
    z-index: 3; 
    position: relative;
    background-color: #fff; /* Ensure it covers the flag origin */
}

/* --- Area Cards (Intervention Areas) Hover Effects --- */
.area-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.area-card-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.4s ease;
}

.area-card img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: block;
}

.area-card:hover {
    transform: translateY(-8px);
}

.area-card:hover .area-card-image-wrapper {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.area-card:hover img {
    transform: scale(1.1);
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-property: opacity, transform;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.95); }

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Delay Utilities */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* --- Subtle Background Texture --- */
.textured-bg {
    position: relative;
    overflow: hidden; /* Prevent texture bleed */
}

.textured-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}
@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* --- Hero Layout Variations --- */
.hero-layout-left-text .hero-overlay-container {
    right: auto;
    left: 0;
}

.hero-layout-left-text .hero-overlay-content-wrapper {
    transform: translateX(-100%);
    animation-name: slideInLeft;
    background: linear-gradient(to left, rgba(255, 245, 194, 0.8), rgba(255, 245, 194, 1));
}

.hero-layout-left-text .hero-text-content {
    text-align: left;
}

/* =========================================
   BLOG POST LISTING & CONTENT FIXES
   ========================================= */

/* 1. Limit Featured Image Height in Listing */
.blog-post-item .post-featured-image {
    height: 450px;
    margin-bottom: 25px;
    overflow: hidden;
}

.blog-post-item .post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-item:hover .post-featured-image img {
    transform: scale(1.03);
}

/* 2. Global List Style Reset for Blog Content (when using custom blocks) */
.entry-content ul, 
.entry-content ol {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1.5rem 0 !important;
}

/* 3. Contrast & Color Adjustments for Coaching Post */
/* Title color fix (from brown/marron to brand blue) */
.entry-content h2, 
.entry-content h3 {
    color: var(--primary-color) !important;
}

/* Proceso Colaborativo Bullets - Contrast Fix */
/* Changed from bright blue to dark blue/primary for better contrast and harmony */
.process-col .col-num {
    background-color: var(--primary-color) !important; 
    color: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Ensure icons and other list-like elements don't get default bullets */
.coaching-list li::before,
.process-col li::before {
    content: none !important;
}

/* Sidebar fixes */
.widget_categories ul li,
.widget_recent_entries ul li {
    list-style: none !important;
}

