/*!
Theme Name:   VisionCare Pro
Theme URI:    https://mediworksdigital.co.uk/themes/visioncare
Author:       MediWorks Digital
Author URI:   https://mediworksdigital.co.uk/
Description:  Premium ophthalmology clinic WordPress theme - Ezra-inspired luxury aesthetic
Version:      4.7.0
Requires PHP: 7.4
Tested up to: 6.4
License:      GNU General Public License version 3.0
License URI:  http://www.gnu.org/licenses/gpl-3.0.html
Text Domain:  visioncare
Tags:         one-column, custom-logo, custom-menu, featured-images, theme-options, medical, healthcare
*/

/* ==========================================================================
   CSS Variables - Ezra-Inspired Luxury Design System
   ========================================================================== */
:root {
    /* Primary - Black & Charcoal */
    --vc-primary: #000000;
    --vc-primary-dark: #000000;
    --vc-primary-light: #1a1a1a;
    
    /* Secondary - Warm Charcoal */
    --vc-secondary: #111111;
    --vc-secondary-light: #1a1a1a;
    --vc-secondary-dark: #000000;
    
    /* Accent - Gold */
    --vc-accent: #C9A86C;
    --vc-accent-gold: #C9A86C;
    --vc-accent-light: #D4B88A;
    
    /* Neutrals */
    --vc-white: #ffffff;
    --vc-off-white: #FAFAFA;
    --vc-light: #F5F5F5;
    --vc-gray: #888888;
    --vc-gray-light: #E5E5E5;
    --vc-gray-dark: #444444;
    --vc-dark: #111111;
    --vc-body-color: #555555;
    
    /* Typography */
    --vc-font-heading: 'Cormorant Garamond', Georgia, serif;
    --vc-font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --vc-section-padding: 100px;
    --vc-section-padding-sm: 60px;
    --vc-container-max: 1200px;
    
    /* Effects - Clean & Minimal */
    --vc-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    --vc-shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.15);
    --vc-transition: all 0.4s ease;
    --vc-transition-slow: all 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--vc-font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--vc-body-color);
    background-color: var(--vc-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--vc-font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--vc-dark);
    margin: 0 0 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin: 0 0 1.5rem;
}

a {
    color: var(--vc-dark);
    text-decoration: none;
    transition: var(--vc-transition);
}

a:hover {
    color: var(--vc-accent);
}

strong {
    font-weight: 600;
}

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

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--vc-container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

@media (min-width: 1400px) {
    .container-fluid {
        padding: 0 80px;
    }
}

.vc-section {
    padding: var(--vc-section-padding) 0;
}

.vc-section--full {
    padding-left: 0;
    padding-right: 0;
}

.vc-section--full .container-fluid {
    padding: 0;
}

.vc-section--full .vc-section__heading,
.vc-section--full .vc-section__intro,
.vc-section--full .vc-section__cta {
    padding: 0 40px;
}

@media (min-width: 1400px) {
    .vc-section--full .vc-section__heading,
    .vc-section--full .vc-section__intro,
    .vc-section--full .vc-section__cta {
        padding: 0 80px;
    }
}

.vc-section--dark {
    background: var(--vc-primary);
    color: var(--vc-white);
}

.vc-section--light {
    background: var(--vc-off-white);
}

.vc-section__heading {
    font-family: var(--vc-font-heading);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 25px;
}

.vc-section--dark .vc-section__heading {
    color: var(--vc-white);
}

.vc-section__cta {
    text-align: center;
    margin-top: 60px;
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.vc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--vc-font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 35px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--vc-transition);
    text-decoration: none;
}

.vc-btn--primary {
    background: var(--vc-accent);
    color: var(--vc-white);
    border-color: var(--vc-accent);
}

.vc-btn--primary:hover {
    background: #B8975B;
    border-color: #B8975B;
    color: var(--vc-white);
}

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

.vc-btn--white:hover {
    background: var(--vc-accent);
    border-color: var(--vc-accent);
    color: var(--vc-white);
}

.vc-btn--outline {
    background: transparent;
    color: var(--vc-dark);
    border-color: var(--vc-dark);
}

.vc-btn--outline:hover {
    background: var(--vc-dark);
    color: var(--vc-white);
}

.vc-btn--lg {
    padding: 20px 45px;
    font-size: 13px;
}

.vc-btn--full {
    width: 100%;
}

.vc-link {
    font-family: var(--vc-font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vc-dark);
    border-bottom: 1px solid var(--vc-dark);
    padding-bottom: 5px;
}

.vc-link:hover {
    color: var(--vc-accent);
    border-color: var(--vc-accent);
}

.vc-link--light {
    color: var(--vc-white);
    border-color: var(--vc-white);
}

.vc-link--light:hover {
    color: var(--vc-accent);
    border-color: var(--vc-accent);
}

/* ==========================================================================
   Header - Ezra Style
   ========================================================================== */
.vc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--vc-primary);
}

/* Top Bar */
.vc-topbar {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 40px;
    display: none;
}

@media (min-width: 992px) {
    .vc-topbar {
        display: block;
    }
}

.vc-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.vc-topbar__contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vc-topbar__contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.vc-topbar__contact a:hover {
    color: var(--vc-white);
}

.vc-topbar__contact svg {
    opacity: 0.7;
}

.vc-topbar__divider {
    color: rgba(255, 255, 255, 0.3);
}

.vc-topbar__social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vc-topbar__social a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--vc-transition);
}

.vc-topbar__social a:hover {
    color: var(--vc-accent);
}

/* Main Header */
.vc-header__main {
    padding: 15px 40px;
}

@media (min-width: 1400px) {
    .vc-header__main {
        padding: 15px 60px;
    }
}

.vc-header__inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.vc-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.vc-logo img {
    height: 32px;
    width: auto;
}

.vc-logo:hover {
    opacity: 0.9;
}

/* Navigation */
.vc-nav {
    display: none;
}

@media (min-width: 992px) {
    .vc-nav {
        display: block;
    }
}

.vc-nav__list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vc-nav__list li {
    list-style: none;
}

.vc-nav__list a {
    font-size: 13px;
    font-weight: 500;
    color: var(--vc-white);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.vc-nav__list a:hover {
    color: var(--vc-accent);
}

/* Header Contact Info */
.vc-header__contact {
    display: none;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .vc-header__contact {
        display: flex;
    }
}

.vc-header__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    transition: var(--vc-transition);
}

.vc-header__contact-item:hover {
    color: var(--vc-white);
}

.vc-header__contact-item svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.vc-header__contact-item--address {
    color: rgba(255, 255, 255, 0.6);
}

/* Header Book Button */
.vc-btn--header {
    display: none;
    background: transparent;
    border-color: var(--vc-white);
    color: var(--vc-white);
    padding: 10px 22px;
    font-size: 11px;
}

@media (min-width: 992px) {
    .vc-btn--header {
        display: inline-flex;
    }
}

.vc-btn--header:hover {
    background: var(--vc-white);
    color: var(--vc-primary);
}

/* Mobile Menu Toggle */
.vc-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
}

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

.vc-menu-toggle span {
    width: 25px;
    height: 1px;
    background: var(--vc-white);
    transition: var(--vc-transition);
}

/* ==========================================================================
   Hero Section - Split Layout
   ========================================================================== */
.vc-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: var(--vc-primary);
    overflow: hidden;
    padding-top: 100px;
}

/* Split Hero Layout */
.vc-hero--split {
    display: flex;
    flex-direction: column;
    padding-top: 70px;
    min-height: auto;
    overflow: visible;
}

@media (min-width: 992px) {
    .vc-hero--split {
        flex-direction: row;
        min-height: 650px;
    }
}

@media (min-width: 1200px) {
    .vc-hero--split {
        min-height: 700px;
    }
}

.vc-hero__content-side {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: var(--vc-primary);
}

@media (min-width: 992px) {
    .vc-hero__content-side {
        width: 50%;
        padding: 80px 60px 80px 60px;
    }
}

@media (min-width: 1200px) {
    .vc-hero__content-side {
        padding: 80px 80px 80px 80px;
    }
}

@media (min-width: 1400px) {
    .vc-hero__content-side {
        padding: 80px 100px 80px 120px;
    }
}

.vc-hero__image-side {
    position: relative;
    height: 350px;
    background: #1a1a1a;
}

@media (min-width: 768px) {
    .vc-hero__image-side {
        height: 450px;
    }
}

@media (min-width: 992px) {
    .vc-hero__image-side {
        width: 50%;
        height: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
    }
}

.vc-hero__image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

@media (min-width: 992px) {
    .vc-hero__image-side img {
        object-position: 30% center;
    }
}

@media (min-width: 1200px) {
    .vc-hero__image-side img {
        object-position: 40% center;
    }
}

@media (min-width: 1400px) {
    .vc-hero__image-side img {
        object-position: center center;
    }
}

.vc-hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.vc-hero--split .vc-hero__content {
    text-shadow: none;
}

.vc-hero__label {
    display: inline-block;
    font-family: var(--vc-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--vc-accent-gold);
    margin-bottom: 2rem;
}

.vc-hero__title {
    font-family: var(--vc-font-heading);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--vc-white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.vc-hero__tagline {
    font-family: var(--vc-font-heading);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.vc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.vc-hero__actions .vc-btn {
    padding: 18px 35px;
    font-size: 12px;
    letter-spacing: 2px;
}

.vc-btn--outline-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--vc-white);
    border-color: rgba(255, 255, 255, 0.6);
}

.vc-btn--outline-light:hover {
    background: var(--vc-white);
    color: var(--vc-primary);
    border-color: var(--vc-white);
}

.vc-btn--outline-dark {
    background: transparent;
    color: var(--vc-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.vc-btn--outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Hero actions responsive */
@media (max-width: 480px) {
    .vc-hero__actions {
        flex-direction: column;
    }
    
    .vc-hero__actions .vc-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Treatment Tiles - Ezra Style (Image with Title Overlay)
   ========================================================================== */

/* Introduction Section */
.vc-intro {
    padding: 80px 0;
    background: var(--vc-white);
    border-bottom: 1px solid var(--vc-gray-light);
}

.vc-intro__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vc-intro__text {
    font-family: var(--vc-font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--vc-body-color);
    margin: 0;
}

.vc-intro__reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .vc-intro__reviews {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

.vc-stars {
    display: flex;
    gap: 6px;
}

.vc-stars svg {
    width: 24px;
    height: 24px;
    color: #C9A86C;
}

.vc-intro__rating {
    font-size: 16px;
    color: var(--vc-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Section Intro Text */
.vc-section__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.7;
}

.vc-section__intro--dark {
    color: var(--vc-body-color);
}

/* Services Grid - Text Based */
.vc-services-grid {
    display: grid;
    gap: 20px;
    padding: 0 40px;
}

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

@media (min-width: 1200px) {
    .vc-services-grid {
        padding: 0 60px;
    }
    
    .vc-services-grid--wide {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1400px) {
    .vc-services-grid {
        padding: 0 80px;
    }
}

.vc-services-grid--light {
    background: transparent;
}

.vc-service-item {
    display: block;
    padding: 40px 30px;
    background: var(--vc-secondary);
    transition: var(--vc-transition);
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Alternating colored boxes */
.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(1) { background: #C9A86C; }
.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(2) { background: #2A3B4D; }
.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(3) { background: #8B7355; }
.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(4) { background: #1E2D3D; }
.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(5) { background: #B89B5E; }
.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(6) { background: #3D4F5F; }

.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(1):hover { background: #B8975B; }
.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(2):hover { background: #1E2D3D; }
.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(3):hover { background: #7A6244; }
.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(4):hover { background: #15202D; }
.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(5):hover { background: #A78A4D; }
.vc-services-grid:not(.vc-services-grid--light) .vc-service-item:nth-child(6):hover { background: #2D3F4F; }

.vc-services-grid--light .vc-service-item {
    background: #F8F7F5;
    border: 2px solid #E8E4DC;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 50px 35px;
}

/* Subtle colored backgrounds for light boxes */
.vc-services-grid--light .vc-service-item:nth-child(1) { background: #F5F0E8; border-color: #E8DFD0; }
.vc-services-grid--light .vc-service-item:nth-child(2) { background: #F0F4F7; border-color: #D8E2EA; }
.vc-services-grid--light .vc-service-item:nth-child(3) { background: #F2F0EC; border-color: #E0DCD4; }

.vc-services-grid--light .vc-service-item:hover {
    background: var(--vc-white);
    border-color: var(--vc-accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.vc-services-grid--light .vc-service-item h3 {
    color: var(--vc-primary);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.vc-services-grid--light .vc-service-item p {
    color: var(--vc-body-color);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.vc-services-grid--light .vc-service-item__arrow {
    color: var(--vc-accent);
    font-size: 0.875rem;
    font-weight: 600;
}

.vc-service-item:hover {
    background: #2A3B4D;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.vc-service-item h3 {
    font-family: var(--vc-font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--vc-white);
    margin-bottom: 1rem;
}

.vc-services-grid--light .vc-service-item h3 {
    color: var(--vc-primary);
}

.vc-service-item p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.vc-service-item:hover h3 {
    color: var(--vc-accent);
}

.vc-service-item__arrow {
    display: inline-block;
    font-size: 0.8125rem;
    color: var(--vc-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.vc-service-item__arrow::after {
    content: ' →';
}

.vc-service-item:hover .vc-service-item__arrow {
    color: var(--vc-white);
}

.vc-services-grid--light .vc-service-item__arrow {
    color: var(--vc-accent);
}

.vc-services-grid--light .vc-service-item:hover .vc-service-item__arrow {
    color: var(--vc-dark);
}

/* Why Choose Us Section */
.vc-why-choose {
    padding: 100px 0;
    background: var(--vc-off-white);
}

.vc-why-choose__grid {
    display: grid;
    gap: 50px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .vc-why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 80px;
    }
}

.vc-why-choose__item h3 {
    font-family: var(--vc-font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--vc-primary);
    margin-bottom: 1rem;
}

.vc-why-choose__item p {
    color: var(--vc-body-color);
    margin: 0;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.vc-treatments-grid {
    display: grid;
    gap: 15px;
}

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

.vc-treatments-grid--3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .vc-treatments-grid--6 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vc-treatments-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .vc-treatments-grid--6 {
        grid-template-columns: repeat(6, 1fr);
    }
}

.vc-treatment-tile {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

.vc-treatment-tile--tall {
    aspect-ratio: 3/4;
}

.vc-treatment-tile__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: var(--vc-transition-slow);
}

.vc-treatment-tile__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    transition: var(--vc-transition);
}

.vc-treatment-tile__title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-family: var(--vc-font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--vc-white);
    margin: 0;
    z-index: 2;
}

.vc-treatment-tile:hover .vc-treatment-tile__image {
    transform: scale(1.05);
}

.vc-treatment-tile:hover .vc-treatment-tile__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

/* ==========================================================================
   Featured In Section
   ========================================================================== */
.vc-featured {
    padding: 60px 0;
    background: var(--vc-white);
    border-top: 1px solid var(--vc-gray-light);
    border-bottom: 1px solid var(--vc-gray-light);
}

.vc-featured__title {
    font-family: var(--vc-font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
    color: var(--vc-gray);
    margin-bottom: 40px;
}

.vc-featured__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 50px;
}

.vc-featured__logo {
    font-family: var(--vc-font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--vc-gray-dark);
    opacity: 0.5;
    transition: var(--vc-transition);
}

.vc-featured__logo:hover {
    opacity: 1;
}

@media (min-width: 768px) {
    .vc-featured__logos {
        gap: 40px 80px;
    }
    
    .vc-featured__logo {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   About Section - Home
   ========================================================================== */
.vc-about-home {
    padding: var(--vc-section-padding) 0;
    background: var(--vc-white);
}

.vc-about-home__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

@media (min-width: 992px) {
    .vc-about-home__grid {
        grid-template-columns: 400px 1fr;
        gap: 80px;
    }
}

.vc-about-home__image-inner {
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    background-color: var(--vc-gray-light);
}

.vc-about-home__title {
    font-family: var(--vc-font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.vc-about-home__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--vc-body-color);
    margin-bottom: 2rem;
}

.vc-about-home__credentials {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--vc-gray-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vc-about-home__cred-group h4 {
    font-family: var(--vc-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vc-gray);
    margin-bottom: 15px;
}

.vc-about-home__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vc-about-home__badges span {
    font-size: 12px;
    color: var(--vc-gray-dark);
    padding: 5px 12px;
    border: 1px solid var(--vc-gray-light);
}

.vc-about-home__contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--vc-gray-light);
}

.vc-about-home__contact h4 {
    font-family: var(--vc-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vc-gray);
    margin-bottom: 15px;
}

.vc-about-home__contact p {
    font-size: 14px;
    color: var(--vc-dark);
    margin-bottom: 5px;
}

.vc-about-home__contact a {
    color: var(--vc-dark);
    font-weight: 500;
}

/* ==========================================================================
   Consultation Section
   ========================================================================== */
.vc-consultation-section {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 600px;
    background: var(--vc-primary);
    color: var(--vc-white);
}

@media (min-width: 992px) {
    .vc-consultation-section {
        grid-template-columns: 40% 60%;
        min-height: 700px;
    }
}

.vc-consultation-section__image {
    display: none;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .vc-consultation-section__image {
        display: block;
    }
}

.vc-consultation-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vc-consultation-section__wrapper {
    padding: 60px 40px;
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .vc-consultation-section__wrapper {
        padding: 80px 80px 80px 60px;
    }
}

@media (min-width: 1400px) {
    .vc-consultation-section__wrapper {
        padding: 100px 120px 100px 80px;
    }
}

.vc-consultation-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    width: 100%;
}

@media (min-width: 768px) {
    .vc-consultation-section__inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }
}

.vc-consultation-section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vc-accent);
    margin-bottom: 1.5rem;
}

.vc-consultation-section__content h2 {
    font-family: var(--vc-font-heading);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    color: var(--vc-white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.vc-consultation-section__content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 2rem 0;
    line-height: 1.7;
}

.vc-consultation-section__contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
}

.vc-consultation-section__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.vc-consultation-section__contact-item svg {
    color: var(--vc-accent);
    flex-shrink: 0;
}

/* Button accent style */
.vc-btn--accent {
    background: var(--vc-accent);
    color: var(--vc-white);
    border-color: var(--vc-accent);
}

.vc-btn--accent:hover {
    background: #B8975B;
    border-color: #B8975B;
}

/* Form Styles - Dark */
.vc-form--dark .vc-form__input,
.vc-form--dark .vc-form__select,
.vc-form--dark .vc-form__textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--vc-font-body);
    font-size: 14px;
    color: var(--vc-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    transition: var(--vc-transition);
}

.vc-form--dark .vc-form__input::placeholder,
.vc-form--dark .vc-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.vc-form--dark .vc-form__input:focus,
.vc-form--dark .vc-form__select:focus,
.vc-form--dark .vc-form__textarea:focus {
    outline: none;
    border-color: var(--vc-accent);
    background: rgba(255, 255, 255, 0.15);
}

.vc-form--dark .vc-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.vc-form--dark .vc-form__select option {
    background: var(--vc-primary);
    color: var(--vc-white);
}

.vc-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* ==========================================================================
   Footer - Ezra Style
   ========================================================================== */
.vc-footer {
    background: var(--vc-primary);
    color: var(--vc-white);
    padding: 80px 40px 30px;
}

@media (min-width: 1400px) {
    .vc-footer {
        padding: 80px 80px 30px;
    }
}

.vc-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .vc-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

@media (min-width: 992px) {
    .vc-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 80px;
    }
}

.vc-footer__logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.vc-footer__logo img {
    height: 36px;
    width: auto;
}

.vc-footer__about {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vc-footer__social {
    display: flex;
    gap: 15px;
}

.vc-footer__social a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--vc-transition);
}

.vc-footer__social a:hover {
    color: var(--vc-accent);
}

.vc-footer__title {
    font-family: var(--vc-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vc-white);
    margin-bottom: 25px;
}

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

.vc-footer__links li {
    margin-bottom: 12px;
}

.vc-footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.vc-footer__links a:hover {
    color: var(--vc-white);
}

.vc-footer__contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.vc-footer__contact a {
    color: var(--vc-white);
}

.vc-footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.vc-footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.vc-footer__legal {
    display: flex;
    gap: 30px;
}

.vc-footer__legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.vc-footer__legal a:hover {
    color: var(--vc-white);
}

/* ==========================================================================
   Page Header
   ========================================================================== */
.vc-page-header {
    padding: 180px 0 80px;
    background: var(--vc-primary);
    text-align: center;
}

.vc-page-header__title {
    font-family: var(--vc-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--vc-white);
    margin-bottom: 1rem;
}

.vc-page-header__breadcrumb {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.vc-page-header__breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

.vc-page-header__breadcrumb a:hover {
    color: var(--vc-white);
}

.vc-page-header__reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .vc-page-header__reviews {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
}

.vc-page-header__reviews .vc-stars {
    display: flex;
    gap: 4px;
}

.vc-page-header__reviews .vc-stars svg {
    width: 20px;
    height: 20px;
    color: #C9A86C;
}

.vc-page-header__rating {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ==========================================================================
   Forms - Light
   ========================================================================== */
.vc-form__input,
.vc-form__select,
.vc-form__textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--vc-font-body);
    font-size: 14px;
    color: var(--vc-dark);
    background: var(--vc-white);
    border: 1px solid var(--vc-gray-light);
    margin-bottom: 15px;
    transition: var(--vc-transition);
}

.vc-form__input:focus,
.vc-form__select:focus,
.vc-form__textarea:focus {
    outline: none;
    border-color: var(--vc-dark);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.vc-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 992px) {
    .vc-contact__grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 80px;
    }
}

.vc-contact-info__card {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--vc-gray-light);
}

.vc-contact-info__card:first-child {
    padding-top: 0;
}

.vc-contact-info__icon {
    color: var(--vc-accent);
}

.vc-contact-info__icon svg {
    width: 24px;
    height: 24px;
}

.vc-contact-info__title {
    font-family: var(--vc-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vc-gray);
    margin-bottom: 8px;
}

.vc-contact-info__text {
    font-size: 15px;
    color: var(--vc-dark);
    margin: 0;
}

.vc-contact-info__text a {
    color: var(--vc-dark);
}

/* Map Container */
.vc-map-container iframe {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-white { color: var(--vc-white); }
.mb-0 { margin-bottom: 0; }
.mt-50 { margin-top: 50px; }

/* ==========================================================================
   Scroll to Top
   ========================================================================== */
.vc-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--vc-primary);
    color: var(--vc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--vc-transition);
    cursor: pointer;
    z-index: 999;
}

.vc-scroll-top--visible {
    opacity: 1;
    visibility: visible;
}

.vc-scroll-top:hover {
    background: var(--vc-accent);
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */
.vc-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--vc-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--vc-transition);
}

.vc-mobile-nav--open {
    opacity: 1;
    visibility: visible;
}

.vc-mobile-nav__close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--vc-white);
    font-size: 30px;
    cursor: pointer;
}

.vc-mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.vc-mobile-nav__list li {
    margin-bottom: 20px;
}

.vc-mobile-nav__list a {
    font-family: var(--vc-font-heading);
    font-size: 2rem;
    color: var(--vc-white);
}

.vc-mobile-nav__list a:hover {
    color: var(--vc-accent);
}

/* ==========================================================================
   Pricing Box
   ========================================================================== */
.vc-pricing-box {
    background: var(--vc-off-white);
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .vc-pricing-box {
        padding: 60px 60px;
    }
}

.vc-pricing-box__header {
    margin-bottom: 40px;
}

.vc-pricing-box__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vc-accent);
    margin-bottom: 1rem;
}

.vc-pricing-box__title {
    font-family: var(--vc-font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--vc-primary);
    margin-bottom: 1rem;
}

.vc-pricing-box__description {
    font-size: 1rem;
    color: var(--vc-body-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.vc-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    text-align: left;
}

.vc-pricing-table th {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--vc-gray);
    padding: 15px 10px;
    border-bottom: 2px solid var(--vc-gray-light);
}

.vc-pricing-table td {
    padding: 18px 10px;
    border-bottom: 1px solid var(--vc-gray-light);
    font-size: 1rem;
    color: var(--vc-body-color);
}

.vc-pricing-table__service {
    font-weight: 500;
    color: var(--vc-primary);
}

.vc-pricing-table__price {
    font-weight: 600;
    color: var(--vc-accent);
}

.vc-pricing-box__note {
    font-size: 0.875rem;
    color: var(--vc-gray);
    margin: 0;
}

/* ==========================================================================
   CTA Form Section
   ========================================================================== */
.vc-cta-form-section {
    padding: 80px 0;
    background: var(--vc-primary);
    color: var(--vc-white);
}

@media (min-width: 992px) {
    .vc-cta-form-section {
        padding: 100px 0;
    }
}

.vc-cta-form-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 992px) {
    .vc-cta-form-section__inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }
}

.vc-cta-form-section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vc-accent);
    margin-bottom: 1rem;
}

.vc-cta-form-section__title {
    font-family: var(--vc-font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--vc-white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.vc-cta-form-section__description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vc-cta-form-section__features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.vc-cta-form-section__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.vc-cta-form-section__feature svg {
    color: var(--vc-accent);
    flex-shrink: 0;
}

.vc-cta-form-section__contact p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.vc-cta-form-section__phone {
    font-family: var(--vc-font-heading);
    font-size: 1.5rem;
    color: var(--vc-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vc-cta-form-section__phone:hover {
    color: var(--vc-white);
}

.vc-cta-form-section__form-title {
    font-family: var(--vc-font-heading);
    font-size: 1.5rem;
    color: var(--vc-white);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Treatment Cards
   ========================================================================== */
.vc-treatments__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

@media (min-width: 1200px) {
    .vc-treatments__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vc-treatment-card {
    background: var(--vc-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vc-treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.vc-treatment-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--vc-off-white);
}

.vc-treatment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vc-treatment-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f8f7f5 0%, #ebe8e2 100%);
    color: var(--vc-accent);
}

.vc-treatment-card__content {
    padding: 25px;
}

.vc-treatment-card__title {
    font-family: var(--vc-font-heading);
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.vc-treatment-card__title a {
    color: var(--vc-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vc-treatment-card__title a:hover {
    color: var(--vc-accent);
}

.vc-treatment-card__excerpt {
    font-size: 0.9375rem;
    color: var(--vc-body-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.vc-treatment-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.vc-treatment-card__price {
    font-weight: 600;
    color: var(--vc-accent);
}

.vc-treatment-card__duration {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--vc-gray);
}

.vc-treatment-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vc-accent);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.vc-treatment-card__link:hover {
    gap: 12px;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 767px) {
    .vc-section {
        padding: var(--vc-section-padding-sm) 0;
    }
    
    .vc-treatment-tile__title {
        font-size: 12px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .vc-form__row {
        grid-template-columns: 1fr;
    }
    
    .vc-about-home__credentials {
        grid-template-columns: 1fr;
    }
    
    .vc-pricing-box {
        padding: 30px 20px;
    }
    
    .vc-pricing-table th,
    .vc-pricing-table td {
        padding: 12px 8px;
        font-size: 0.875rem;
    }
}
