/* ==========================================================================
   Tarot & Vida - Option 2 (Classic Premium Evolution Design System)
   ========================================================================== */

/* 1. Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

/* 2. Custom Properties (Tokens) */
:root {
    /* Color Palette */
    --bg-light: #fdfdfd;                   /* Clean main canvas */
    --bg-section: #f7f9fc;                /* Soft gray-blue section */
    --bg-card: #ffffff;                    /* Pure white cards */
    --bg-dark-banner: rgba(15, 5, 29, 0.95); /* Deep dark for hero and testimonials */
    
    /* Branding Colors V2 */
    --accent-purple: hsl(275, 80%, 55%);   /* Main theme purple */
    --accent-purple-dark: hsl(275, 75%, 40%);
    --accent-gold: hsl(45, 75%, 50%);      /* Gold highlights */
    
    /* HSL Colors for Left Card Borders */
    --border-blue: hsl(224, 76%, 59%);     /* Om / connection */
    --border-green: hsl(156, 73%, 45%);    /* Compass / guidance */
    --border-cyan: hsl(188, 78%, 48%);     /* Leaf / healing */
    --border-yellow: hsl(45, 95%, 50%);
    --border-red: hsl(5, 78%, 55%);
    
    /* Typography */
    --text-primary: #2d3748;               /* Dark slate for high contrast */
    --text-muted: #6b7280;                 /* Slate gray */
    --text-light: #f7fafc;                 /* For dark backgrounds */

    --font-heading: 'EB Garamond', serif;
    --font-body: 'Hanken Grotesk', sans-serif;
    
    /* Layout & Shadows */
    --border-light: 1px solid rgba(226, 232, 240, 0.8);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 45px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --radius-premium: 16px;
}

/* 3. Base & Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-light);
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

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

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 90px 0;
}

.bg-grey {
    background-color: var(--bg-section);
}

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

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-gold) 100%);
    border-radius: 2px;
}

.section-heading p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* 4. Navigation Header */
body > header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

body > header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

body > header.scrolled .navbar {
    padding: 12px 0;
}

.nav-brand img {
    height: 45px;
    width: auto;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    color: var(--text-light); /* Light text on dark transparent hero header initially */
}

body > header.scrolled .nav-link {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-purple);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-purple);
}

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

.nav-link.active {
    color: var(--accent-purple);
}

/* Social Icon Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    font-size: 1.1rem;
    color: var(--text-light);
}

body > header.scrolled .social-icon {
    color: var(--text-muted);
}

.social-icon:hover {
    color: var(--accent-purple) !important;
    transform: scale(1.1);
}

.nav-toggle {
    display: none;
    font-size: 1.4rem;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
}

body > header.scrolled .nav-toggle {
    color: var(--text-primary);
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--text-primary) !important;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1000;
    }
}

/* 5. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-purple {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(175, 82, 237, 0.25);
}

.btn-purple:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(175, 82, 237, 0.4);
}

.btn-border-white {
    background: transparent;
    color: white;
    border: 1.5px solid white;
}

.btn-border-white:hover {
    background: white;
    color: var(--accent-purple-dark);
    transform: translateY(-2px);
}

.btn-border {
    background: transparent;
    color: var(--accent-purple);
    border: 1.5px solid var(--accent-purple);
}

.btn-border:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-2px);
}

/* 6. Welcome Hero Section (V2 Clásica) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    overflow: hidden;
}

/* Background image overlay */
.hero.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 15, 55, 0.9) 0%, rgba(15, 5, 29, 0.85) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.25;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.7;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Overlapping illustration style matching the original support.png */
.hero-image img {
    max-width: 110%;
    margin-bottom: -50px; /* Overlaps bottom divider */
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
    z-index: 3;
}

/* Shape Bottom curve divider */
.shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.shape-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 65px;
}

.shape-fill-white {
    fill: var(--bg-light); /* Curve filled with body bg color */
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 80%;
        margin-bottom: -20px;
    }
}

/* 7. Image Slider Section V2 */
.slider-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.slider-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px;
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-soft);
    border: var(--border-light);
    scroll-snap-type: x mandatory;
}

.slider-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom horizontal scrollbar styled premium */
.slider-wrapper::-webkit-scrollbar {
    height: 6px;
}

.slider-wrapper::-webkit-scrollbar-track {
    background: rgba(74, 20, 140, 0.05);
    border-radius: 10px;
}

.slider-wrapper::-webkit-scrollbar-thumb {
    background: #D4AF37; /* Celestial Gold */
    border-radius: 10px;
}

.slider-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}


@media (min-width: 768px) {
    .slider-item {
        flex: 0 0 calc(33.333% - 15px);
    }
}

/* 8. Feature Cards Area (Colored Border Left V2) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 35px 30px;
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-soft);
    border: var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

/* Specific left border colors V2 */
.feature-card.blue::before { background-color: var(--border-blue); }
.feature-card.green::before { background-color: var(--border-green); }
.feature-card.cyan::before { background-color: var(--border-cyan); }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.feature-card.blue .feature-icon-wrapper { background: rgba(78, 115, 223, 0.1); color: var(--border-blue); }
.feature-card.green .feature-icon-wrapper { background: rgba(28, 200, 138, 0.1); color: var(--border-green); }
.feature-card.cyan .feature-icon-wrapper { background: rgba(54, 185, 204, 0.1); color: var(--border-cyan); }

.feature-icon-wrapper i {
    font-size: 1.6rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 9. Services Area V2 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 35px;
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-soft);
    border: var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

/* Assign colored borders based on service ID index V2 */
.service-card:nth-child(3n+1)::before { background-color: var(--border-blue); }
.service-card:nth-child(3n+2)::before { background-color: var(--border-green); }
.service-card:nth-child(3n+3)::before { background-color: var(--border-cyan); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

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

.service-card:nth-child(3n+1) .service-icon { color: var(--border-blue); }
.service-card:nth-child(3n+2) .service-icon { color: var(--border-green); }
.service-card:nth-child(3n+3) .service-icon { color: var(--border-cyan); }

.service-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.service-actions .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.75rem;
}

/* 10. Schedule Section V2 */
.schedule-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 45px;
    background-color: var(--bg-card);
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-soft);
    border: var(--border-light);
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

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

.schedule-info i {
    color: var(--accent-purple);
    margin-bottom: 15px;
}

.schedule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(226, 232, 240, 1);
}

.schedule-day {
    font-weight: 600;
    color: var(--text-primary);
}

.schedule-day i {
    color: var(--accent-purple);
    margin-right: 8px;
}

.schedule-time {
    background: rgba(175, 82, 237, 0.08);
    color: var(--accent-purple-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.schedule-time.closed {
    background: rgba(226, 232, 240, 0.5);
    color: var(--text-muted);
}

.schedule-note {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(175, 82, 237, 0.04);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    border: 1px solid rgba(175, 82, 237, 0.1);
}

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

/* 11. Portfolio / Case Studies V2 */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74, 20, 140, 0.04);
    border: 1px solid rgba(74, 20, 140, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 20, 140, 0.08);
    border-color: rgba(214, 175, 55, 0.3); /* Celestial Gold */
}

.portfolio-img-wrapper {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img-wrapper {
    transform: scale(1.03);
}

.portfolio-content {
    padding: 30px;
    background: white;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.portfolio-content h3 {
    color: var(--text-primary);
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-family: 'EB Garamond', serif;
}

.portfolio-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* 12. Blog V2 */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-soft);
    border: var(--border-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.blog-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.blog-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--accent-purple);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-purple-dark);
}

.blog-link:hover {
    color: var(--text-primary);
}

/* 13. Blog Detail Area V2 */
.blog-detail {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--bg-card);
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-soft);
    border: var(--border-light);
}

.blog-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--accent-purple-dark);
    margin-bottom: 15px;
}

.blog-detail-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.blog-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
}

.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-detail-content p {
    margin-bottom: 25px;
}

.blog-detail-content blockquote {
    border-left: 3px solid var(--accent-purple);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-muted);
}

.blog-detail-footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(226,232,240,1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* 14. Contact Form V2 */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-item {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-soft);
    border: var(--border-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(175, 82, 237, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-purple-dark);
}

.contact-card-content h4 {
    font-size: 1rem;
    color: var(--text-primary);
}

.contact-card-content p,
.contact-card-content a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-card-content a:hover {
    color: var(--accent-purple);
}

.contact-form {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-soft);
    border: var(--border-light);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1.5px solid rgba(226, 232, 240, 1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 10px rgba(175, 82, 237, 0.05);
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

.form-label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: var(--transition-smooth);
    pointer-events: none;
    font-size: 0.9rem;
}

textarea.form-control + .form-label {
    top: 22px;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    top: -8px;
    left: 8px;
    font-size: 0.75rem;
    background-color: white;
    padding: 0 6px;
    color: var(--accent-purple-dark);
}

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

/* 15. Footer Section V2 - Dark Premium Theme */
.site-footer {
    background-color: #1A0633; /* Midnight Void */
    border-top: 2px solid #D4AF37; /* Celestial Gold Border */
    padding: 80px 0 30px;
    color: #FAFAFA; /* Sacred White */
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer.has-map .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
}

.site-footer .footer-logo {
    max-height: 80px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.site-footer .footer-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #D4AF37; /* Celestial Gold */
    font-family: 'EB Garamond', serif;
    position: relative;
    padding-bottom: 10px;
}

.site-footer .footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #D4AF37;
}

.site-footer .footer-about p {
    color: #e2e2e2;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.site-footer .footer-about-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    color: #e2e2e2;
}

.site-footer .footer-about-info i {
    color: #D4AF37;
    margin-right: 8px;
}

.site-footer .footer-about-info a {
    color: #FAFAFA;
    transition: color 0.3s ease;
}

.site-footer .footer-about-info a:hover {
    color: #D4AF37;
}

.site-footer .footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer .footer-links-list a {
    color: #e2e2e2;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.site-footer .footer-links-list a:hover {
    color: #D4AF37;
    padding-left: 6px;
}

.site-footer .footer-social-text {
    color: #e2e2e2;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.site-footer .footer-social-grid {
    display: flex;
    gap: 12px;
}

.site-footer .footer-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FAFAFA;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.site-footer .footer-social-icon:hover {
    background: #D4AF37;
    color: #1A0633;
    border-color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #b3b3b3;
}

.site-footer .footer-bottom a {
    color: #D4AF37;
}

.site-footer .footer-version {
    color: #D4AF37;
    font-weight: 500;
}

@media (max-width: 992px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 15b. Testimonials Section V2 */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-grey);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(74, 20, 140, 0.04);
    border: 1px solid rgba(74, 20, 140, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 20, 140, 0.08);
    border-color: rgba(214, 175, 55, 0.3); /* Celestial Gold */
}

.testimonial-stars {
    color: #D4AF37; /* Celestial Gold */
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-family: 'EB Garamond', serif;
    font-size: 3rem;
    color: rgba(74, 20, 140, 0.08);
    position: absolute;
    top: -20px;
    left: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.testimonial-author-info h5 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* 16. Inner Page Banner (Breadcrumb Header V2) */
.inner-banner {
    padding: 130px 0 60px;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: var(--border-light);
}

.inner-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 15, 55, 0.85) 0%, var(--bg-light) 100%);
    z-index: 1;
}

.inner-banner .container {
    position: relative;
    z-index: 2;
}

.inner-banner h2, .inner-banner h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: white;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb-separator {
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.breadcrumb-active {
    color: white;
    font-weight: 500;
}

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

/* ==========================================================================
   Tarot & Vida - Custom Additional Fixes V2 (Typography, Spacing, Mobile, WhatsApp)
   ========================================================================== */

/* Custom Section Titles & Descriptions V2 */
.section-title {
    font-family: 'EB Garamond', serif !important;
    font-size: 2.8rem !important;
    color: var(--text-primary);
    margin-bottom: 25px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Hanken Grotesk', sans-serif !important;
    font-size: 1.1rem !important;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 60px !important; /* Spacing below the description */
    line-height: 1.8;
    font-weight: 400;
}

.section-heading h2 {
    font-family: 'EB Garamond', serif;
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-heading p {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Google Reviews & Map Section V2 */
.google-reviews-section {
    padding: 90px 0;
    background-color: var(--bg-section);
}

.reviews-map-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.google-reviews-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 175, 55, 0.25); /* Celestial Gold accent border */
    position: relative;
    overflow: hidden;
}

.google-reviews-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-gold) 100%);
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.google-brand i {
    font-size: 2.2rem;
    color: #4285F4; /* Google Blue */
}

.google-rating-summary {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.google-rating-stars {
    color: #F4B400; /* Google Gold */
    font-size: 1.3rem;
}

.google-reviews-card h3 {
    font-size: 1.9rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.google-reviews-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 30px;
}

.google-reviews-card .btn-border {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    border: 1.5px solid rgba(175, 82, 237, 0.4);
    color: var(--accent-purple);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.google-reviews-card .btn-border:hover {
    background-color: var(--accent-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(175, 82, 237, 0.15);
}

.map-iframe-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-soft);
    border: var(--border-light);
    line-height: 0;
}

/* WhatsApp Floating Button with Label badge */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    color: white;
}

.whatsapp-badge {
    position: absolute;
    right: 75px;
    background-color: #ffffff;
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    white-space: nowrap;
    border: 1px solid rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
}

.whatsapp-float:hover .whatsapp-badge {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Hero Specific Layout & Stacking Overlap Fixes */
@media (max-width: 992px) {
    .hero {
        padding-bottom: 60px !important;
    }
    .hero-image {
        position: relative !important;
        z-index: 5 !important;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    .hero-image img {
        max-width: 85% !important;
        margin-bottom: 0 !important; /* Reset margin since shape-bottom is hidden */
    }
    .shape-bottom {
        display: none !important; /* Hide the white curve divider on mobile */
    }
    .reviews-map-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title, .section-heading h2 {
        font-size: 2.0rem !important;
        letter-spacing: 1.5px !important;
    }
    .section-subtitle, .section-heading p {
        font-size: 1.0rem !important;
        margin-bottom: 40px !important;
    }
    .hero-content h1 {
        font-size: 2.2rem !important;
    }
    .google-reviews-card {
        padding: 30px 20px;
    }
    .whatsapp-badge {
        display: none; /* Hide badge text on tablet/mobile portrait to avoid screen blocking */
    }
}

@media (max-width: 576px) {
    .btn-group {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100%;
    }
    .btn-group .btn {
        width: 100%;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 1.8rem !important;
    }
    .hero-content p {
        font-size: 0.95rem !important;
        margin-bottom: 25px !important;
    }
    .section-title, .section-heading h2 {
        font-size: 1.7rem !important;
    }
}

