/* Daisy Jane Healing - Exact Original Site Recreation */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile-first responsive utilities */
html, body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Ensure content doesn't get hidden behind fixed header */
body {
    padding-top: 60px;
    background-image: url('../assets/images/floral-bg.jpg');
    background-repeat: repeat;
    background-size: 800px auto;
}

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

/* Touch-friendly interactions */
.healing-cta-button {
    min-height: 44px;
    touch-action: manipulation;
}

/* Better container handling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Improved grid for mobile */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 20px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Flexible service cards */
.service-card {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.service-card .healing-cta-button {
    margin-top: auto !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    /* background-color: #ffffff; */ /* removed for floral bg */
    overflow-x: hidden;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Prevent text cursor on non-selectable elements */
* {
    cursor: default;
}

/* Allow text selection where needed */
p, h1, h2, h3, h4, h5, h6, .wpb_text_column, .service-description, .about-content {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Form elements should be selectable */
input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}

/* Buttons and links should have pointer cursor */
button, a, .healing-cta-button, .service-link, .nav-menu a {
    cursor: pointer;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999999;
}

/* Navigation Header */
.site-header {
    background: rgba(253, 250, 247, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    flex-direction: row-reverse;
}

.nav-logo {
    display: flex;
    align-items: center;
    background: transparent !important;
}

.logo-img {
    height: 60px !important;
    width: auto !important;
    max-height: 60px !important;
    filter: none !important;
    background: transparent !important;
}

.nav-logo img {
    height: 60px !important;
    width: auto !important;
    max-height: 60px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
}

/* Main page logo (larger) */
.main-logo {
    width: 262px !important;
    height: 262px !important;
    max-width: 262px !important;
    max-height: 262px !important;
}

.home .vc_single_image-img.main-logo {
    width: 262px !important;
    height: 262px !important;
    max-width: 262px !important;
    max-height: 262px !important;
}

.vc_single_image-img.main-logo {
    width: 262px !important;
    height: 262px !important;
    max-width: 262px !important;
    max-height: 262px !important;
}

img.main-logo {
    width: 262px !important;
    height: 262px !important;
    max-width: 262px !important;
    max-height: 262px !important;
}

/* Circular background behind main logo */
.vc_single_image-wrapper.vc_box_border_circle {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    padding: 20px !important;
    width: 302px !important;
    height: 302px !important;
    margin: 0 auto !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.vc_single_image-wrapper.vc_box_border_circle img {
    position: relative !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-family: 'Arvo', serif;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #b347a5;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fdf9f6;
}

/* Adjust main content for fixed header */
#main {
    padding-top: 20px;
}

/* Button Styles */
.healing-cta-button {
    display: inline-block;
    background: #fdf9f6;
    color: #ffffff;
    border: 2px solid #b347a5;
    padding: 15px 30px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.healing-cta-button:hover {
    background: #9a3a8e;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    color: #ffffff;
}

.healing-cta-secondary {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Service Cards */
.service-card {
    background: #fdf9f6;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: #fdf9f6;
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-title {
    color: #ffffff;
    font-family: 'Arvo', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-description {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    background: #fdf9f6;
    color: #ffffff;
    border: 1px solid #ccc;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #9a3a8e;
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.skip-to-content:focus {
    left: 6px;
    top: 7px;
    z-index: 999999;
    color: #fff;
    background-color: #000;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 3px;
}

/* WordPress/Total Theme Structure */
#outer-wrap {
    position: relative;
    overflow: hidden;
}

#wrap {
    max-width: 900px !important;
    position: relative;
}

#main {
    position: relative;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

.wpex-clr:after {
    content: "";
    display: table;
    clear: both;
}

/* Full-height sections */
.vc_row {
    position: relative;
    z-index: 1;
}

.vc_row-o-full-height {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc_row-o-columns-middle {
    align-items: center;
}

.vc_row-flex {
    display: flex;
}

.wpex-vc-full-width-row {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.wpex-vc-full-width-row--centered {
    margin-left: calc(50% - 50vw);
}

.wpex-vc_row-has-fill {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-fixed {
    background-attachment: fixed;
}

.wpex-vc-bg-fixed {
    background-attachment: fixed;
}

.wpex-vc-bg-center {
    background-position: center;
}

/* Home Section */
.vc_custom_healing_home {
    /* url('/wp-content/uploads/2022/09/shutterstock_1097462351.webp') no-repeat center center; */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.vc_custom_healing_home_inner {
    padding: 30px 30px 25px;
    /* rgba(255, 255, 255, 0.1) url('/wp-content/uploads/2016/05/red-40.png') no-repeat center center; */
    background-size: cover;
    background-attachment: fixed;
}

/* Services Section */
.vc_custom_healing_services {
    /* url('/wp-content/uploads/2022/09/Feather-scaled-1.jpg') no-repeat center center; */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

/* Services Page Section */
.vc_custom_healing_services_page {
    /* url('/wp-content/uploads/2022/09/gettyimages-1074644676_0-2000-bee7420f31f443688e7c4b172dcdd5ea.webp') no-repeat center center; */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.vc_custom_healing_services_inner {
    padding: 30px 30px 25px;
}

.vc_custom_healing_services_inner > .wpb_wrapper {
    backdrop-filter: none;
    border-radius: 0;
    padding: 40px;
    margin: 0 auto;
    max-width: 1000px;
}

.vc_custom_healing_services_inner .wpb_wrapper .wpb_wrapper {
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.vc_custom_healing_services_page_inner {
    padding: 30px 30px 25px;
}

.vc_custom_healing_services_page_inner > .wpb_wrapper {
    backdrop-filter: none;
    border-radius: 0;
    padding: 40px;
    margin: 0 auto;
    max-width: 1000px;
}

.vc_custom_healing_services_page_inner .wpb_wrapper .wpb_wrapper {
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Reiki Section */
.vc_custom_healing_reiki {
    /* url('/wp-content/uploads/2022/09/Accredited-Reiki-2-training.webp') no-repeat center center; */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.vc_custom_healing_reiki_inner {
    padding: 30px 30px 25px;
}

.vc_custom_healing_reiki_inner > .wpb_wrapper {
    backdrop-filter: none;
    border-radius: 0;
    padding: 40px;
    margin: 0 auto;
    max-width: 1000px;
}

.vc_custom_healing_reiki_inner .wpb_wrapper .wpb_wrapper {
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Harp Section */
.vc_custom_healing_harp {
    /* url('/wp-content/uploads/2022/09/Accredited-Reiki-2-training.webp') no-repeat center center; */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.vc_custom_healing_harp_inner {
    padding: 30px 30px 25px;
}

.vc_custom_healing_harp_inner > .wpb_wrapper {
    backdrop-filter: none;
    border-radius: 0;
    padding: 40px;
    margin: 0 auto;
    max-width: 1000px;
}

.vc_custom_healing_harp_inner .wpb_wrapper .wpb_wrapper {
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Crystal Healing Section */
.vc_custom_healing_crystal {
    /* url('/wp-content/uploads/2022/09/amethyst-chips-resized.webp') no-repeat center center; */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.vc_custom_healing_crystal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.vc_custom_healing_crystal_inner {
    padding: 30px 30px 25px;
}

.vc_custom_healing_crystal_inner > .wpb_wrapper {
    backdrop-filter: none;
    border-radius: 0;
    padding: 40px;
    margin: 0 auto;
    max-width: 1000px;
}

.vc_custom_healing_crystal_inner .wpb_wrapper .wpb_wrapper {
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Contact Section */
.vc_custom_healing_contact {
    /* url('/wp-content/uploads/2022/09/bristol_reiki_therapies-1.webp') no-repeat center center; */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.vc_custom_healing_contact_inner {
    padding: 30px 30px 25px;
}

.vc_custom_healing_contact_inner > .wpb_wrapper {
    backdrop-filter: none;
    border-radius: 0;
    padding: 40px;
    margin: 0 auto;
    max-width: 1000px;
}

.vc_custom_healing_contact_inner .wpb_wrapper .wpb_wrapper {
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Column Structure */
.wpb_column {
    position: relative;
}

.vc_col-sm-4 {
    width: 33.333333%;
    float: left;
    padding: 0 10px;
}

.vc_col-sm-12 {
    width: 100%;
}

.vc_column-inner {
    position: relative;
    width: 100%;
    min-height: 1px;
}

.wpb_wrapper {
    position: relative;
}

/* Typography */
.healing-main-title,
.healing-section-title {
    color: #ffffff;
    font-family: 'Fredericka the Great', cursive;
    line-height: 1.1;
    font-size: 100px;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 15px;
}

.healing-sub-title,
.healing-section-subtitle {
    color: #ffffff;
    font-family: 'Arvo', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
}

.wpex-responsive-txt {
    display: block;
}

.vcex-heading {
    position: relative;
    z-index: 2;
}

.vcex-heading-inner {
    display: block;
}

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

.white-text {
    color: #ffffff;
}

/* Icon Boxes */
.healing-icon-box {
    margin: 10px;
    position: relative;
    z-index: 2;
}

.vcex-icon-box {
    display: block;
    text-align: center;
}

.vcex-icon-box-symbol {
    margin-bottom: 20px;
}

.vcex-icon-box-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    color: #ffffff;
}

.healing-icon {
    font-size: 40px;
    color: #ffffff;
}

.vcex-icon-box-heading {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.vcex-icon-box-content {
    color: #ffffff;
}

.vcex-icon-box-content p {
    margin-bottom: 0;
}

.wpex-mb-20 {
    margin-bottom: 20px;
}

.wpex-mb-10 {
    margin-bottom: 10px;
}

.wpex-last-mb-0 {
    margin-bottom: 0;
}

/* Scroll Down Icons */
.scroll-down-icon {
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.vcex-icon {
    display: block;
    text-align: center;
}

.vcex-icon-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
}

.vcex-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fdf9f6;
    transition: all 0.3s ease;
}

.vcex-icon-wrap:hover {
    background: #fdf9f6;
    transform: translateY(-2px);
}

.vcex-icon-wrap svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hover Effects */
.hvr-wobble-vertical:hover {
    animation: hvr-wobble-vertical 1s ease-in-out;
}

@keyframes hvr-wobble-vertical {
    16.65% {
        transform: translateY(8px);
    }
    33.3% {
        transform: translateY(-6px);
    }
    49.95% {
        transform: translateY(4px);
    }
    66.6% {
        transform: translateY(-2px);
    }
    83.25% {
        transform: translateY(1px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Spacing */
.vcex-spacing {
    display: block;
    width: 100%;
    clear: both;
}

.wpex-w-100 {
    width: 100%;
}

.wpex-clear {
    clear: both;
}

/* Image Styling */
.wpb_single_image {
    text-align: center;
    margin-bottom: 15px;
}

.vc_single_image-wrapper {
    display: inline-block;
    position: relative;
}

.vc_box_border_circle {
    border-radius: 50%;
    overflow: hidden;
}

.vc_box_border_grey {
    border: 3px solid rgba(255, 255, 255, 0.3);
}

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

/* Text Content */
.wpb_text_column {
    position: relative;
    z-index: 2;
}

.wpb_text_column p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Form */
.healing-contact-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.healing-contact-form-inner {
    padding: 20px 40px;
}

.wpcf7-form {
    display: block;
}

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

.wpcf7-form label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
}

.wpcf7-form-control {
    color: #333 !important;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    background: #fdf9f6;
    color: #ffffff;
    border-radius: 3px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: #b347a5;
    background: #fdf9f6;
}

.wpcf7-form-control::placeholder {
    color: #999;
}

.wpcf7-textarea {
    resize: vertical;
    min-height: 120px;
}

.wpcf7-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 16 16'%3e%3cpath d='M8 13.1l-8-8h16l-8 8z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.wpcf7-submit {
    width: 100%;
    padding: 15px;
    background: #b347a5;
    color: #ffffff;
    border: 2px solid #b347a5;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.wpcf7-submit:hover {
    background: #9a3a8e;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 25px !important;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media screen and (max-width: 959px) {
    .vc_col-sm-4 {
        width: 100%;
        float: none;
        margin-bottom: 15px;
    }
    
    .healing-main-title,
    .healing-section-title {
        font-size: 60px;
        line-height: 1.2;
    }
    
    .healing-sub-title,
    .healing-section-subtitle {
        font-size: 24px;
    }
    
    /* Compact mobile navigation */
    body {
        padding-top: 60px;
    }
    
    .site-header {
    background: rgba(253, 250, 247, 0.95) !important;
        padding: 8px 0;
    }
    
    .main-navigation {
        flex-direction: row;
        padding: 8px 15px;
        gap: 10px;
        align-items: center;
    }
    
    .nav-logo {
        flex-shrink: 0;
    }
    
    .nav-menu {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        flex: 1;
    }
    
    .nav-menu li {
        margin: 0;
        flex-shrink: 0;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 6px 10px;
        border-radius: 15px;
    }
    
    /* Services grid improvements */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 20px !important;
    }
    
    .service-card {
        padding: 30px 20px !important;
    }
    
    .service-card h3 {
        font-size: 22px !important;
    }
    
    .service-card p {
        font-size: 14px !important;
    }
    
    .vc_custom_healing_home_inner,
    .vc_custom_healing_services_inner,
    .vc_custom_healing_reiki_inner,
    .vc_custom_healing_harp_inner,
    .vc_custom_healing_crystal_inner,
    .vc_custom_healing_contact_inner {
        padding: 30px 25px 25px;
    }
    
    .healing-contact-form-inner {
        padding: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 767px) {
    .healing-main-title,
    .healing-section-title {
        font-size: 40px;
    }
    
    .healing-sub-title,
    .healing-section-subtitle {
        font-size: 18px;
    }
    
    .vc_row-o-full-height {
        min-height: 100vh;
        padding: 40px 0;
    }
    
    /* Logo improvements */
    .logo-img {
        height: 100px !important;
        width: auto !important;
    }
    
    /* More compact navigation */
    body {
        padding-top: 50px;
    }
    
    .site-header {
    background: rgba(253, 250, 247, 0.95) !important;
        padding: 5px 0;
    }
    
    .main-navigation {
        padding: 5px 10px;
        gap: 8px;
    }
    
    .nav-menu {
        gap: 6px;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 5px 8px;
        border-radius: 12px;
    }
    
    /* Container improvements */
    .container {
        padding: 0 15px;
    }
    
    /* Service detail improvements */
    .service-detail-content {
        padding: 0 15px;
    }
    
    .service-benefit-box,
    .service-info-box {
        padding: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .service-benefit-box h3,
    .service-info-box h3 {
        font-size: 18px !important;
    }
    
    .service-benefit-box ul li,
    .service-info-box p {
        font-size: 14px !important;
    }
    
    /* Session info improvements */
    .session-info {
        padding: 20px !important;
    }
    
    .session-info h3 {
        font-size: 20px !important;
    }
    
    .session-info p {
        font-size: 16px !important;
    }
    
    /* Crystal types grid */
    .crystal-types div {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .crystal-types div p {
        font-size: 14px !important;
    }
    
    .bg-fixed,
    .wpex-vc-bg-fixed {
        background-attachment: scroll;
    }
}

@media screen and (max-width: 479px) {
    .healing-main-title,
    .healing-section-title {
        font-size: 28px;
    }
    
    .healing-sub-title,
    .healing-section-subtitle {
        font-size: 14px;
    }
    
    .vc_custom_healing_home_inner,
    .vc_custom_healing_services_inner,
    .vc_custom_healing_reiki_inner,
    .vc_custom_healing_harp_inner,
    .vc_custom_healing_crystal_inner,
    .vc_custom_healing_contact_inner {
        padding: 25px 20px 20px;
    }
    
    /* Very small screen improvements */
    body {
        padding-top: 40px;
    }
    
    .site-header {
    background: rgba(253, 250, 247, 0.95) !important;
        padding: 3px 0;
    }
    
    .logo-img {
        height: 70px !important;
    }
    
    .main-navigation {
        padding: 3px 8px;
        gap: 5px;
    }
    
    .nav-menu {
        gap: 4px;
    }
    
    .nav-menu a {
        font-size: 12px;
        padding: 4px 6px;
        border-radius: 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .service-card {
        padding: 20px 15px !important;
    }
    
    .service-card h3 {
        font-size: 20px !important;
    }
    
    .service-card p {
        font-size: 13px !important;
    }
    
    .service-icon {
        font-size: 50px !important;
    }
    
    .healing-cta-button {
        font-size: 14px !important;
        padding: 12px 20px !important;
    }
    
    .service-detail-content {
        padding: 0 10px;
    }
    
    .service-benefit-box,
    .service-info-box {
        padding: 15px !important;
    }
    
    .session-info {
        padding: 15px !important;
    }
    
    .session-info h3 {
        font-size: 18px !important;
    }
    
    .session-info p {
        font-size: 14px !important;
    }
    
    /* Crystal types improvements */
    .crystal-types {
        padding: 20px 15px !important;
    }
    
    .crystal-types div {
        margin-bottom: 10px;
    }
    
    .crystal-types div p {
        font-size: 13px !important;
    }
    
    /* Footer improvements */
    footer {
        padding: 30px 0 !important;
    }
    
    footer div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    footer h4 {
        font-size: 16px !important;
    }
    
    footer p,
    footer a {
        font-size: 12px !important;
    }
}

/* ===== FLORAL DESIGN ===== */

/* Single content panel on #wrap */
#wrap {
    max-width: 900px !important;
    background: #fdf9f6;
    margin: 20px auto;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

#main, #content-wrap, #content, .site-main, .site-content, .vc_column-inner {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    max-width: none !important;
}

/* Dark text for readability */
#wrap h1, #wrap h2, #wrap h3, #wrap p, #wrap span,
.healing-section-title, .healing-section-subtitle {
    color: #333 !important;
}

/* Brand purple for headings */
.healing-section-title {
    color: #7b2878 !important;
}
#wrap h2, #wrap h3 {
    color: #7b2878 !important;
}

/* Buttons */
.healing-cta-button {
    color: #fff !important;
    background: #b347a5 !important;
}

/* Override white inline text colors within content panel */
#wrap p[style*="color: #ffffff"],
#wrap h3[style*="color: #ffffff"],
#wrap h4[style*="color: #ffffff"],
#wrap ul[style*="color: #ffffff"],
#wrap span[style*="color: #ffffff"],
#wrap a[style*="color: #ffffff"] {
    color: #666 !important;
}

#wrap a[style*="text-decoration: underline"] {
    color: #b347a5 !important;
}

/* Keep footer white text (dark background) */
footer h4, footer p, footer a, footer span {
    color: #fff !important;
}
footer a:hover {
    color: #e0b0d8 !important;
}

/* Force dark text on all content within #wrap */
#wrap, #wrap * {
    color: #444 !important;
}

/* Restore white text for footer */
footer, footer * {
    color: #fff !important;
}

/* Keep links purple */
#wrap a {
    color: #b347a5 !important;
}

/* Keep buttons white text */
#wrap .healing-cta-button,
#wrap a[class*="button"],
#wrap button {
    color: #fff !important;
}

/* Qualifications section - fix bullet alignment */
.qualifications-section ul {
    list-style: none !important;
    padding-left: 20px !important;
    margin: 0 !important;
}

.qualifications-section ul li {
    padding-left: 5px !important;
    margin-bottom: 8px !important;
}

.qualifications-section ul li span[style*="position: absolute"] {
    display: none !important;
}

.qualifications-section,
.practitioner-info {
    background: #f8f6f4 !important;
    border: 1px solid #e0d0e5 !important;
}

.qualifications-section h3,
.qualifications-section h4,
.practitioner-info h3 {
    color: #6b3d6b !important;
}

/* Ensure content has breathing room from panel edges */
#wrap .wpb_text_column {
    padding: 0 10px;
}

#wrap .services-grid {
    padding: 0 10px !important;
}

/* Homepage hero titles purple */
#wrap h1.healing-main-title,
#wrap h1.healing-main-title span,
#wrap .healing-sub-title,
#wrap .healing-sub-title span,
h1.healing-main-title {
    color: #7b2878 !important;
    font-weight: 400;
}

/* Inner page titles purple */
#wrap h1.healing-section-title,
#wrap h1.healing-section-title span,
h1.healing-section-title {
    color: #7b2878 !important;
    font-weight: 400;
}

/* Force default cursor everywhere except form inputs */
body, body * {
    cursor: default !important;
}

input, textarea, select {
    cursor: text !important;
}

a, button, .healing-cta-button, .nav-menu a, .service-link {
    cursor: pointer !important;
}

/* ===== HAMBURGER MENU ===== */
.hamburger-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer !important;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hamburger-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #b347a5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Phone in header */
.header-phone {
    font-family: 'Arvo', serif;
    font-size: 14px;
    color: #b347a5 !important;
    text-decoration: none;
    white-space: nowrap;
}

.header-phone svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
    fill: #b347a5;
}

.header-phone-text {
    vertical-align: middle;
}

@media screen and (max-width: 959px) {
    .hamburger-toggle {
        display: flex !important;
    }

    .nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 250, 247, 0.98);
        flex-direction: column !important;
        padding: 15px 20px !important;
        gap: 0 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.open {
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block !important;
        padding: 12px 15px !important;
        font-size: 16px !important;
        border-bottom: 1px solid #eee;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .header-phone-text {
        display: none;
    }

    .header-phone svg {
        width: 22px;
        height: 22px;
    }
}

/* ===== HARP THERAPY FEATURED SECTION ===== */
.harp-featured {
    background: linear-gradient(135deg, #f3e5f5 0%, #fdf9f6 50%, #e8d5f0 100%);
    border: 2px solid #e0b0d8;
    border-radius: 12px;
    padding: 35px 30px;
    margin: 30px 0;
    text-align: center;
}

.harp-featured h2 {
    font-family: 'Fredericka the Great', cursive !important;
    color: #b347a5 !important;
    font-size: 32px;
    margin-bottom: 15px;
}

.harp-featured p {
    font-family: 'Arvo', serif;
    color: #555 !important;
    font-size: 16px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 20px;
}

.harp-featured .healing-cta-button {
    background: #b347a5 !important;
    color: #fff !important;
    border-color: #b347a5;
}

/* Contact page mobile layout fix */
@media screen and (max-width: 768px) {
    .contact-info div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* ===== MOBILE FIXES - Feb 2026 ===== */

/* Fix blog post pages - inline white styles conflict with floral theme */
.blog-post #wrap .wpb_wrapper div[style*="color: #ffffff"],
.blog-post #wrap .wpb_wrapper p[style*="color: #ffffff"],
.blog-post #wrap .wpb_wrapper h2[style*="color: #ffffff"],
.blog-post #wrap .wpb_wrapper a[style*="color: #ffffff"] {
    color: #444 !important;
}

.blog-post #wrap a[style*="text-decoration: underline"] {
    color: #b347a5 !important;
}

/* Blog post CTA box */
.blog-post #wrap div[style*="background: rgba(255, 255, 255, 0.1)"] {
    background: #f3e5f5 !important;
    border-color: #e0b0d8 !important;
}

.blog-post #wrap div[style*="background: rgba(255, 255, 255, 0.1)"] p {
    color: #444 !important;
}

/* Blog listing page cards */
.blog #wrap div[style*="background: rgba(255, 255, 255, 0.1)"] {
    background: #f8f4fa !important;
    border-color: #e0b0d8 !important;
}

.blog #wrap div[style*="background: rgba(255, 255, 255, 0.1)"] h2 a {
    color: #7b2878 !important;
}

.blog #wrap div[style*="background: rgba(255, 255, 255, 0.1)"] p {
    color: #555 !important;
}

/* Fix excessive vertical space on mobile */
@media screen and (max-width: 767px) {
    .vc_row-o-full-height {
        min-height: auto !important;
        padding: 30px 0 !important;
    }
    
    /* Reduce spacing between sections */
    .vcex-spacing {
        height: 15px !important;
    }
    
    /* Better body text size on mobile */
    #wrap p, #wrap li {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
    
    /* Service card text more readable */
    .service-card p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    /* Blog post body text */
    .blog-post #wrap div[style*="line-height: 1.8"] {
        font-size: 15px !important;
    }
    
    .blog-post #wrap div[style*="line-height: 1.8"] h2 {
        font-size: 20px !important;
        margin: 25px 0 12px !important;
    }
    
    /* Fix form fields full width */
    #wrap input[type="text"],
    #wrap input[type="email"],
    #wrap input[type="tel"],
    #wrap textarea,
    #wrap select {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Better tap targets */
    .healing-cta-button {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 24px !important;
    }
    
    /* Footer email word break */
    footer a[href^="mailto:"] {
        word-break: break-all !important;
    }
    
    /* Reduce #wrap padding on mobile */
    #wrap {
        margin: 10px auto !important;
        padding: 15px !important;
        border-radius: 12px !important;
    }
    
    /* Hamburger larger tap target */
    .hamburger-toggle {
        min-width: 44px !important;
        min-height: 44px !important;
    }
}

@media screen and (max-width: 479px) {
    #wrap {
        margin: 5px auto !important;
        padding: 10px !important;
        border-radius: 8px !important;
    }
    
    .blog-post #wrap div[style*="line-height: 1.8"] h2 {
        font-size: 18px !important;
    }
}

/* ===== ABOUT PAGE - Qualifications grid overflow fix ===== */
@media screen and (max-width: 767px) {
    .qualifications-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .qualification-category {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
    
    .qualification-category ul {
        padding-right: 5px !important;
    }
    
    .qualification-category li {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .qualifications-section {
        overflow: visible !important;
        padding: 15px !important;
    }
    
    /* Also fix any other inline grids with minmax too wide */
    div[style*="minmax(350px"],
    div[style*="minmax(300px"] {
        grid-template-columns: 1fr !important;
    }
}

/* ===== BUTTON SPACING FIX ===== */
@media screen and (max-width: 767px) {
    /* Add vertical spacing between stacked CTA buttons */
    .healing-cta-button {
        display: block !important;
        margin: 8px auto !important;
        text-align: center !important;
        max-width: 280px !important;
    }
    
    /* More space between adjacent buttons */
    .healing-cta-button + .healing-cta-button {
        margin-top: 15px !important;
    }
    
    /* Footer links need more tap spacing */
    footer ul li {
        margin-bottom: 12px !important;
    }
    
    footer ul li a {
        padding: 6px 0 !important;
        display: inline-block !important;
    }
}

/* ===== GLOBAL MOBILE FIXES ROUND 2 ===== */
@media screen and (max-width: 767px) {
    /* Headings: prevent one-word-per-line stacking */
    #wrap h2, #wrap h3,
    .healing-section-title,
    .healing-section-subtitle {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    #wrap h1.healing-section-title {
        font-size: 28px !important;
    }
    
    /* More generous body text */
    #wrap p {
        line-height: 1.8 !important;
        margin-bottom: 12px !important;
    }
    
    /* Footer: bigger tap targets and more breathing room */
    footer div[style*="grid-template-columns"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 25px !important;
    }
    
    footer ul {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    footer ul li {
        margin-bottom: 14px !important;
    }
    
    footer ul li a {
        font-size: 14px !important;
        padding: 8px 0 !important;
        display: inline-block !important;
    }
    
    footer h4 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    
    footer p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
    
    /* Service detail pages: session info breathing room */
    .session-info p,
    .session-info h3 {
        margin-bottom: 10px !important;
    }
    
    /* Related services cards spacing */
    .service-card + .service-card {
        margin-top: 15px !important;
    }
    
    /* Back to blog link bigger tap target */
    a[href*="blog.html"] {
        padding: 8px 0 !important;
        display: inline-block !important;
    }
    
    /* Blog listing cards consistent spacing */
    .blog #wrap div[style*="margin-bottom: 25px"] {
        margin-bottom: 20px !important;
    }
    
    /* FAQ section spacing */
    #wrap h2[style*="font-family"] {
        margin-top: 25px !important;
        margin-bottom: 12px !important;
    }
}

@media screen and (max-width: 479px) {
    #wrap h1.healing-section-title {
        font-size: 24px !important;
    }
    
    #wrap h2, #wrap h3 {
        font-size: 20px !important;
    }
    
    footer div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Email address word break */
    footer a[href^="mailto:"] {
        word-break: break-all !important;
        font-size: 12px !important;
    }
}
