/*
Theme Name: AAcurate Finvest
Theme URI: https://aacuratefinvest.com
Author: AAcurate Finvest
Author URI: https://aacuratefinvest.com
Description: A professional WordPress theme for AAcurate Finvest with a modern blue color scheme
Version: 1.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aacurate-finvest
*/
/* CSS CACHE BUST CHECK 1111 */

/* ===== CSS Variables ===== */
:root {
    /* Color Palette - Professional Blue Scheme */
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --light-blue: #dbeafe;
    --dark-blue: #1e293b;

    /* Supporting Colors */
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #e2e8f0;
    --gray: #64748b;
    --dark-gray: #334155;
    --text-dark: #0f172a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);

    /* Typography */
    --font-heading: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--dark-blue);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--dark-gray);
}

a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-blue);
}

/* ===== Container & Layout ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1400px;
}

.container-narrow {
    max-width: 900px;
}

/* ===== Header Styles ===== */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

/* Remove container padding for header to allow logo to go to edge */
.site-header .container {
    padding: 0 !important;
    max-width: 100% !important;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    /* Push items apart: Logo left, Menu right */
    align-items: center;
    padding: 0 var(--spacing-md) 0 0 !important;
    height: 70px !important;
    min-height: 0 !important;
    max-width: 100%;
}

/* Logo Branding */
.site-branding {
    margin-left: 8rem !important;
    /* Shift logo 3 inches to the right */
    padding-left: 2rem !important;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1001;
    width: 200px !important;
    z-index: 1001;
    width: 230px !important;
    /* Increased from 200px for larger logo */
    flex-shrink: 0;
}

/* Extra specific rule to override any conflicts */
/* Extra specific rule to override any conflicts */
.site-header .container .header-container .site-branding {
    margin-left: 8rem !important;
    /* Shift logo 3 inches to the right */
    padding-left: 2rem !important;
}

.custom-logo-link {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.custom-logo-link img,
.custom-logo {
    height: 150px !important;
    /* Increased from 130px */
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
    display: block;
}

.site-logo {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo img {
    height: 150px;
    /* Increased from 130px */
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.site-logo:hover {
    color: var(--secondary-blue);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    margin-left: auto !important;
    /* Force push to right */
    margin-right: 0 !important;
    flex: initial;
    width: auto;
    justify-content: flex-end;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    margin-right: 2rem !important;
    /* Reduced from 8rem to bring Cart closer to menu */
}

.main-navigation a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.main-navigation a:hover {
    color: var(--secondary-blue);
    background-color: var(--light-blue);
}

/* Active Page Indicators */
.main-navigation .current-menu-item>a,
.main-navigation .current_page_item>a,
.main-navigation .current-menu-ancestor>a,
.main-navigation .current_page_ancestor>a {
    color: var(--white);
    background: var(--gradient-primary);
    font-weight: 600;
    position: relative;
}

.main-navigation .current-menu-item>a::after,
.main-navigation .current_page_item>a::after,
.main-navigation .current-menu-ancestor>a::after,
.main-navigation .current_page_ancestor>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    padding: var(--spacing-xs);
}

/* Header Cart */
.header-cart {
    margin-left: 0;
    /* Reset margin */
    display: flex;
    align-items: center;
}

/* Account Link */
.header-account {
    display: flex;
    align-items: center;
    gap: 0.6rem;            /* space between Login and Register buttons */
    margin-right: 1.5rem;
    /* Space from right edge */
    margin-left: 3rem;
    /* Adjusted gap to keep it on far right but balanced */
}

.account-link {
    color: #ffffff !important;
    background-color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    /* Pill shape */
    display: inline-block;
}

.account-link:hover {
    background-color: var(--secondary-blue);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.account-separator {
    display: none; /* hidden — gap handles the spacing between pill buttons */
}

/* Custom Login/Register Forms */
.custom-login-container,
.custom-register-container {
    max-width: 500px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

.custom-login-container h2,
.custom-register-container h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.custom-register-container .form-row,
.custom-login-container .form-row {
    margin-bottom: 1rem;
}

.custom-register-container .form-row label,
.custom-login-container .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.custom-register-container .input-text,
.custom-login-container .input-text {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
}

/* Hide default page title on these custom pages to avoid duplication with container h2 */
.page-id-58 .entry-header,
.page-id-59 .entry-header {
    display: none;
}

/* Custom Form Buttons */
.custom-register-container .button,
.custom-login-container .button {
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.custom-register-container .button:hover,
.custom-login-container .button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    color: var(--white);
}

.cart-link {
    display: flex;
    align-items: center;
    color: var(--dark-gray);
    text-decoration: none;
    position: relative;
    padding: 0.5rem;
    transition: color var(--transition-fast);
}

.cart-link:hover {
    color: var(--secondary-blue);
}

.cart-icon {
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: 0;
    right: -5px;
    background-color: var(--secondary-blue);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Active Cart Page Indicator */
.cart-link.current-cart {
    color: var(--white);
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.cart-link.current-cart .cart-count {
    background-color: var(--white);
    color: var(--secondary-blue);
}


/* ===== Button Styles ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: transparent;
    color: var(--secondary-blue);
    border: 2px solid var(--secondary-blue);
}

.btn-secondary:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== Hero Section ===== */
.hero-section {
    color: var(--white);
    padding: var(--spacing-2xl) 0;
    padding-bottom: 8rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

/* Sliding Background Images (Safari Compatible) */
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    /* Base scale */
    animation: heroSlideFade 24s infinite;
    will-change: opacity, transform;
}

/* Individual delays for the 4 slides (6s interval) */
.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-slide:nth-child(3) {
    animation-delay: 12s;
}

.hero-slide:nth-child(4) {
    animation-delay: 18s;
}

@keyframes heroSlideFade {
    0% {
        opacity: 0;
        transform: scale(1.05);
        z-index: 2;
    }

    /* Fade In */
    4.16%,
    25% {
        opacity: 1;
    }

    /* Subtle Zoom over the entire visible period + fade out */
    30% {
        opacity: 0;
        transform: scale(1.15);
        /* End of zoom */
        z-index: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
        z-index: 1;
    }
}

/* Dark overlay for text readability */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--light-blue);
    line-height: 1.8;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.service-card {
    background: var(--gradient-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    color: var(--white);
    backdrop-filter: blur(5px);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin: var(--spacing-md) 0;
    text-align: center;
}

.service-duration {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.service-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: var(--spacing-sm);
    width: 100%;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: var(--secondary-blue);
    color: var(--white);
}

/* Add to Cart Button Styling */
.add-to-cart-btn {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}



/* ===== Contact Page Cards ===== */
.contact-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--light-gray);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.5px;
}

.contact-info-content p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* ===== Contact Form Card ===== */
.contact-form-card {
    position: relative;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--dark-blue);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-message {
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ===== Location Map ===== */
.location-map {
    margin-top: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ===== Appointment Booking Pages ===== */
.appointment-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.appointment-form-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.appointment-form {
    margin-bottom: var(--spacing-xl);
}

.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.appointment-form select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: var(--white);
    cursor: pointer;
}

.appointment-form select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.appointment-info {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--light-blue);
    border-radius: var(--radius-md);
}

.appointment-info h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.appointment-info ul {
    list-style: none;
    padding: 0;
}

.appointment-info li {
    padding: var(--spacing-xs) 0;
    color: var(--dark-gray);
    font-weight: 500;
}

.service-highlight-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    height: fit-content;
    position: sticky;
    top: 80px;
}

.service-highlight-card h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.service-highlight-card p {
    color: var(--light-blue);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.contact-quick-info {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-lg);
}

.contact-quick-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.contact-quick-info p {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.contact-quick-info a {
    color: var(--accent-blue);
    font-weight: 600;
}

.contact-quick-info a:hover {
    color: var(--white);
}

/* Responsive styles for appointment pages */
@media (max-width: 1024px) {
    .appointment-form-wrapper {
        grid-template-columns: 1fr;
    }

    .service-highlight-card {
        position: static;
    }
}

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


/* ===== About Us Page ===== */
.about-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    margin: var(--spacing-2xl) 0;
}

.about-main-content h2 {
    color: var(--primary-blue);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.about-main-content h2:first-child {
    margin-top: 0;
}

.about-main-content p {
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.why-choose-item {
    padding: var(--spacing-lg);
    background: var(--light-blue);
    border-radius: var(--radius-lg);
    text-align: center;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.why-choose-item h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.why-choose-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-card,
.values-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-lg);
}

.stats-card h3,
.values-card h3 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: var(--spacing-sm) 0;
    color: var(--dark-gray);
    font-weight: 500;
}

.services-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-overview-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.service-overview-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-overview-item h4 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.service-overview-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive About Us */
@media (max-width: 1024px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

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

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

/* ===== Footer ===== */
.site-footer {
    background-color: var(--dark-blue);
    color: var(--light-gray);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.footer-section p,
.footer-section a {
    color: var(--light-gray);
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray);
    color: #ffffff !important;
}

.footer-bottom p {
    color: #ffffff !important;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.social-icon:hover {
    background: var(--secondary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ===== MFCentral Style Service Cards ===== */

.services-grid.services-mf-style {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

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

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

/* MF Card */
.mf-card {
    border-radius: 12px;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Darker overlay for better text readability */
.mf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.mf-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.55) 100%);
}

/* All content should be above overlay */
.mf-card>* {
    position: relative;
    z-index: 2;
}

.mf-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Remove gradient backgrounds - images are now backgrounds */
.card-gradient-1,
.card-gradient-2,
.card-gradient-3,
.card-gradient-4 {
    background: none;
}

/* Top Label */
.mf-card-top-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 1;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700 !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* Hide the image wrapper since image is now background */
.mf-card-image-wrapper {
    display: none;
}

.mf-card-image {
    display: none;
}

/* Service Title */
.mf-service-title {
    margin: auto 0 15px 0;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
}

.mf-main-title {
    font-size: 2.4rem;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
    color: #FFFFFF !important;
    line-height: 1.1;
    max-width: 100%;
    overflow-wrap: break-word;
}

.mf-sub-title {
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    opacity: 1;
    color: #F0F0F0 !important;
    line-height: 1.3;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
}

/* Service Description */
.mf-service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 1;
    margin-bottom: auto;
    max-width: 100%;
    color: #E5E5E5 !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    padding: 0 15px;
    font-weight: 400;
}

/* Card Bottom Section */
.mf-card-bottom {
    margin-top: 20px;
    width: 100%;
}

/* Book Now Button */
.mf-book-now-btn {
    display: inline-block;
    padding: 14px 36px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a !important;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-size: 1rem;
}

.mf-book-now-btn:hover {
    background: var(--primary-blue);
    color: #ffffff !important;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Background shape decoration */
/* ==============================================
   SERVICE BOOKING PAGE STYLES - PROFESSIONAL DESIGN
   ============================================== */

.service-booking-page {
    padding: 60px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.service-booking-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.service-booking-page .container {
    position: relative;
    z-index: 1;
}

/* Header Section */
.booking-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.booking-header h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

/* Duration Plans Section */
.duration-plans-section {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.98);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.duration-plans-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
}

.duration-plans-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

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

/* Enhanced Duration Plan Cards */
.duration-plan-card {
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: visible;
    border: 3px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.duration-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.duration-plan-card:hover::before {
    opacity: 1;
}

.duration-plan-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.35);
}

.duration-plan-card.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.5);
}

.duration-plan-card.selected::before {
    display: none;
}

.duration-plan-card.selected::after {
    content: '✓';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
    animation: checkmarkPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.plan-duration {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.duration-plan-card.selected .plan-duration {
    color: rgba(255, 255, 255, 0.95);
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1;
    transition: all 0.3s ease;
}

.duration-plan-card.selected .plan-price {
    color: white;
    -webkit-text-fill-color: white;
}

.plan-select-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.plan-select-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.plan-select-btn:hover::before {
    width: 300px;
    height: 300px;
}

.plan-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.duration-plan-card.selected .plan-select-btn {
    background: white;
    color: #667eea;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Selected Plan Display */
.selected-plan-display {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 35px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selected-plan-info {
    text-align: center;
    color: white;
}

.selected-plan-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.selected-plan-info p {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 500;
}

.selected-plan-info p strong {
    font-weight: 700;
}

/* Booking Form Section */
.booking-form-section {
    background: rgba(255, 255, 255, 0.98);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-form-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
}

.booking-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
}

/* No Plans Message */
.no-plans-message {
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.no-plans-message p {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 30px;
    font-weight: 500;
}

.back-to-services-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.back-to-services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-header h1 {
        font-size: 2rem;
    }

    .duration-plans-section,
    .booking-form-section {
        padding: 30px 20px;
    }

    .duration-plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-price {
        font-size: 2.5rem;
    }
}

/* removed background shapes as requested */

.mf-service-title,
.mf-service-description,
.mf-card-bottom,
.mf-card-top-label {
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-md);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation a {
        display: block;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    /* Mobile active page indicators */
    .main-navigation .current-menu-item>a,
    .main-navigation .current_page_item>a,
    .main-navigation .current-menu-ancestor>a,
    .main-navigation .current_page_ancestor>a {
        border-left: 4px solid var(--accent-blue);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

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

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

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mt-3 {
    margin-top: var(--spacing-lg);
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}


/* ===== Animations ===== */
/* Fade In Up Animation */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animation-delay-1 {
    animation-delay: 0.2s;
}

.animation-delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Cards Animation */
.floating-card {
    animation: float 3s ease-in-out infinite;
}

.floating-card.animation-delay-1 {
    animation-delay: 0.5s;
}

.floating-card.animation-delay-2 {
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Stats Section */
.stats-section {
    background-color: #1e3a8a;
    padding: var(--spacing-2xl) 0;
    padding-top: 6rem;
    margin: 8rem 0 0 0;
    position: relative;
    overflow: hidden;
}

/* Animated Background Image with Zoom and Pan Effect */
.stats-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('images/stats-background.png');
    background-size: cover;
    background-position: center;
    animation: stats-zoom-pan 30s ease-in-out infinite alternate;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Zoom and Pan Animation */
@keyframes stats-zoom-pan {
    0% {
        transform: scale(1) translate(0, 0);
    }

    25% {
        transform: scale(1.1) translate(2%, -2%);
    }

    50% {
        transform: scale(1.05) translate(-2%, 2%);
    }

    75% {
        transform: scale(1.12) translate(1%, 1%);
    }

    100% {
        transform: scale(1) translate(-1%, -1%);
    }
}

/* Animated Particles and Shimmer Overlay */
.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(30, 58, 138, 0.7) 0%,
            rgba(37, 99, 235, 0.6) 50%,
            rgba(59, 130, 246, 0.5) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Diagonal sliding animation */
@keyframes stats-diagonal-slide {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50%, 50%) rotate(360deg);
    }
}

/* Particle drift animation */
@keyframes stats-particles-drift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }

    33% {
        transform: translate(40px, -30px) scale(1.15);
        opacity: 1;
    }

    66% {
        transform: translate(-30px, 40px) scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: translate(20px, -20px) scale(1.05);
        opacity: 0.9;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    animation: stats-card-float 4s ease-in-out infinite;
}

/* Stagger the animations for each card */
.stat-item:nth-child(1) {
    animation-delay: 0s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.9s;
}

/* Floating animation for cards */
@keyframes stats-card-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    z-index: -1;
    opacity: 1;
}

/* Shimmer effect on hover */
.stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 45px 0 rgba(31, 38, 135, 0.4),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.stat-item:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.stats-section .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-section .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-section .section-title,
.cta-section .section-subtitle {
    color: var(--white);
}

.cta-section .section-subtitle {
    color: var(--light-blue);
}

/* Pulse Animation for CTA Button */
.pulse-animation {
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

/* Responsive Animations */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .stat-number {
        font-size: 2.5rem;
    }

    .floating-card {
        animation: none;
    }
}

/* Partners Slider Section */
.partners-section {
    background-color: #f8fafc;
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--light-gray);
}

.partners-section .section-title {
    margin-bottom: var(--spacing-xl);
    font-size: 2rem;
}

.partners-slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: var(--spacing-xl);
    /* Increased spacing for better separation */
}

/* Pause animation on hover */
.partners-slider:hover .slide-track {
    animation-play-state: paused;
}

/* Remove bottom margin from last slider */
.partners-slider:last-child {
    margin-bottom: 0;
}

.partners-slider::before,
.partners-slider::after {
    background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::after {
    right: 0;
    top: 0;
    transform: rotate(180deg);
}

.partners-slider::before {
    left: 0;
    top: 0;
}

/* Row 1 Animation (Left) */
.slide-track {
    animation: scroll 100s linear infinite;
    /* Very slow glide */
    display: flex;
    width: calc(280px * 50);
    /* 280px slide width * 50 slides */
}

/* Row 2 Animation (Left with offset) */
.partners-slider:nth-of-type(2) .slide-track {
    animation-duration: 110s;
    /* Different speed to prevent alignment */
    animation-delay: -5s;
}

.slide {
    height: 100px;
    width: 280px;
    /* Wider to fit text */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.logo-card {
    background: transparent;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align left */
    gap: 15px;
    /* Space between logo and text */
    width: 100%;
    height: 80px;
}

.logo-card img {
    /* Fixed small size for icons */
    width: 55px;
    height: 55px;
    min-width: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-name {
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.slide:hover .partner-name {
    color: var(--primary-blue);
}

.slide:hover .logo-card img {
    filter: none;
    /* Color on hover */
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-280px * 25));
        /* Move by 1 set of 280px slides */
    }
}

/* Adjust animation speed for mobile */
@media (max-width: 768px) {
    .slide-track {
        width: calc(220px * 50);
        animation-duration: 60s;
    }

    .partners-slider:nth-of-type(2) .slide-track {
        animation-duration: 70s;
    }

    .slide {
        width: 220px;
    }

    .partners-slider::before,
    .partners-slider::after {
        width: 50px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-220px * 25));
        }
    }
}

/* ===== Features Strip Section (Cards Layout) ===== */
.features-strip {
    /* Pull up to float over hero */
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    padding: 0 var(--spacing-md);
    background: transparent;
    border: none;
}

.features-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    /* Removed unified background/shadow */
    background: transparent;
    box-shadow: none;
    border: none;
    overflow: visible;
}

.feature-item-pro {
    background: var(--white);
    padding: 0;
    /* Use wrapper for padding */
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    height: 100%;
}

/* Background Images */
.feature-zero {
    background-image: url('assets/images/bg-zero-comm.png');
}

.feature-paperless {
    background-image: url('assets/images/bg-paperless.png');
}

.feature-secure {
    background-image: url('assets/images/bg-secure.png');
}

.feature-expert {
    background-image: url('assets/images/bg-expert.png');
}

.feature-item-pro {
    background-size: cover;
    background-position: center;
}

/* Overlay & Content Wrapper */
.feature-content-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item-pro:hover .feature-content-wrapper {
    background: rgba(255, 255, 255, 0.95);
}

.feature-item-pro:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-sm);
}

.feature-item-pro:hover .feature-icon-box {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-top: 0;
}

@media (max-width: 991px) {
    .features-grid-pro {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-strip {
        margin-top: -2rem;
    }
}

@media (max-width: 576px) {
    .features-strip {
        margin-top: var(--spacing-lg);
    }

    .features-grid-pro {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   WooCommerce Dashboard Styling
   ========================================= */

/* Main Container Layout */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* Sidebar Navigation */
.woocommerce-MyAccount-navigation {
    flex: 0 0 260px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    height: fit-content;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-weight: 500;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
    transform: translateX(5px);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Dashboard Content Area */
.woocommerce-MyAccount-content {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    min-width: 300px;
    /* Prevent collapse on small screens */
}

/* Dashboard Headings */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

/* Buttons inside Dashboard */
.woocommerce-MyAccount-content .button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.woocommerce-MyAccount-content .button:hover {
    background: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-MyAccount-navigation {
        flex: auto;
        width: 100%;
    }
}

/* =========================================
   WooCommerce Checkout Styling
   ========================================= */

/* Main Checkout Form Layout */
form.checkout.woocommerce-checkout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* Fix for layout shift when notifications appear */
.woocommerce-NoticeGroup-checkout,
.woocommerce-NoticeGroup {
    grid-column: 1 / -1;
    width: 100%;
    margin-bottom: 1.5rem;
}

/* col-1 is Customer Details (Left) */
.col2-set {
    float: none;
    width: 100%;
}

.col2-set .col-1,
.col2-set .col-2 {
    float: none;
    width: 100%;
    margin: 0;
}

/* Wrap Billing Fields in a Card */
#customer_details {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

#customer_details h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

/* Order Review (Right) */
#order_review_heading {
    display: none;
    /* Hide default heading */
}

#order_review {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--secondary-blue);
    /* Highlight */
    height: fit-content;
    position: sticky;
    top: 2rem;
}

/* Order Table Styles */
table.shop_table {
    border: none;
    border-radius: 0;
    margin-bottom: 2rem;
}

table.shop_table th {
    color: var(--primary-blue);
    font-weight: 600;
}

table.shop_table td {
    border-top: 1px solid var(--light-gray);
}

/* Payment Methods */
#payment {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1rem;
}

#payment ul.payment_methods {
    border-bottom: 1px solid var(--light-gray);
}

#place_order {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: transform 0.2s;
}

#place_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    form.checkout.woocommerce-checkout {
        grid-template-columns: 1fr;
    }

    #order_review {
        position: static;
        border: 1px solid var(--light-gray);
    }
}

/* =========================================
   FIX: Checkout Page Inputs & Layout
   ========================================= */

/* Fix Input Field Appearance */
.woocommerce-billing-fields__field-wrapper p.form-row,
.woocommerce-shipping-fields__field-wrapper p.form-row {
    width: 100% !important;
    float: none !important;
    margin-bottom: 1.5rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    display: block;
    width: 100%;
    height: 48px;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    box-sizing: border-box;
    /* Critical for correct sizing */
    color: var(--text-dark);
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Fix Focus State */
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Hide Empty "Additional Information" Column (col-2) */
.woocommerce-checkout .col2-set .col-2 {
    display: none;
}

/* Make "Billing Details" (col-1) Full Width in its container */
.woocommerce-checkout .col2-set .col-1 {
    width: 100%;
    float: none;
    flex: 0 0 100%;
    max-width: 100%;
}

/* Ensure container allows full width */
#customer_details {
    display: flex;
    flex-wrap: wrap;
}

/* Remove default WooCommerce floats that might break grid */
.woocommerce-checkout:after,
.woocommerce-checkout:before,
.col2-set:after,
.col2-set:before {
    content: none;
    display: none;
}

/* ===== Authentication Redesign ===== */
.aacurate-auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    padding: var(--spacing-lg);
}

.auth-card {
    background: var(--white);
    width: 100%;
    max-width: 440px;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: var(--transition-normal);
}

.auth-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: var(--spacing-lg);
}

.auth-toggle {
    display: flex;
    height: 44px;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.toggle-slider {
    position: absolute;
    height: 100%;
    width: 50%;
    background: var(--gradient-accent);
    left: 0;
    top: 0;
    transition: var(--transition-normal);
    z-index: 1;
}

.toggle-btn {
    flex: 1;
    border: none;
    background: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-gray);
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.toggle-btn.active {
    color: var(--white);
}

.auth-forms-container {
    position: relative;
    overflow: hidden;
}

.auth-form {
    display: none;
    transition: var(--transition-normal);
}

.auth-form.active {
    display: block;
    animation: authFadeIn 0.4s ease forwards;
}

@keyframes authFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.input-field:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-row-multi {
    display: flex;
    gap: var(--spacing-sm);
}

.form-row-multi .form-group {
    flex: 1;
}

.form-footer {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--spacing-md);
}

.forgot-link {
    font-size: 0.875rem;
    color: var(--accent-blue);
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 0.875rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-normal);
    margin-bottom: var(--spacing-lg);
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.switch-text {
    font-size: 0.9375rem;
    color: var(--gray);
}

.switch-text a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.switch-text a:hover {
    text-decoration: underline;
}

/* Page Hides Site Header/Footer on Auth Pages */
.page-template-auth .site-header,
.page-template-auth .site-footer {
    display: none;
}

/* Logged in state */
.auth-logged-in {
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.auth-logged-in p {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

/* Responsiveness */
@media (max-width: 480px) {
    .auth-card {
        padding: var(--spacing-lg);
    }

    .form-row-multi {
        flex-direction: column;
        gap: 0;
    }
}

/* Verification Message Card */
.verification-message-card {
    background: var(--white);
    max-width: 540px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.verification-icon {
    margin: 0 auto var(--spacing-lg);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-icon svg {
    color: var(--white);
}

.verification-message-card h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: var(--spacing-md);
}

.verification-email {
    font-size: 1.125rem;
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.verification-text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.verification-note {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
    font-size: 0.9375rem;
    color: #92400e;
    text-align: left;
}

.back-to-login-btn {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.back-to-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ========================================= */
/* Amelia Booking Plugin Custom Overrides    */
/* ========================================= */

/* 1. Sidebar Container Text Color */
.amelia-v2-booking #amelia-container .am-fs-sb {
    color: #ffffff !important;
    --am-c-sb-text: #ffffff;
}

/* 2. Step Headings (Date & Time, Your Information, Payments) */
.amelia-v2-booking #amelia-container .am-fs-sb__step-heading {
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* 3. Step Selection Details (e.g. Feb 24, 2026...) */
.amelia-v2-booking #amelia-container .am-fs-sb__step-selection,
.amelia-v2-booking #amelia-container .am-fs-sb__step-selection p,
.amelia-v2-booking #amelia-container .am-fs-sb__step-selection span {
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}

/* 4. Menu Text (Collapse menu) */
.amelia-v2-booking #amelia-container .am-fs-sb__menu-text {
    color: #ffffff !important;
}

/* 5. Icons in Sidebar */
.amelia-v2-booking #amelia-container .am-fs-sb [class^="am-icon-"],
.amelia-v2-booking #amelia-container .am-fs-sb [class*=" am-icon-"] {
    color: #ffffff !important;
}

/* 6. Calendar & Time Slot Visibility (General) */
.am-fs__calendar-day.selected span,
.am-fs__calendar-day.active span,
.el-calendar-table td.is-selected .el-calendar-day span {
    color: #ffffff !important;
}

.am-fs__time-slot.selected,
.am-fs__time-slot.active {
    color: #ffffff !important;
}

/* Continue Button Text */
.am-fs__footer .el-button--primary span {
    color: #ffffff !important;
}

/* ===== Reduced Motion Support (Fixes Blinking on macOS) ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .stats-section::before {
        animation: none !important;
        transform: scale(1.05) !important;
    }
    
    .hero-slide {
        animation: none !important;
    }
}

/* ========================================
   Amelia Reschedule Request Modal Styling
   ======================================== */

/* Modal Container - Hidden by default */
.amelia-reason-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

/* Show modal when active */
.amelia-reason-modal.active {
    display: flex;
}

/* Modal Overlay/Backdrop */
.amelia-reason-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10001;
}

/* Modal Content Box */
.amelia-reason-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 500px;
    width: 90%;
    z-index: 10002;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Header */
.amelia-modal-header {
    padding: 24px 28px 0;
}

.amelia-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    font-family: var(--font-heading);
}

.amelia-modal-divider {
    height: 1px;
    background: linear-gradient(to right, #e5e7eb, transparent);
    margin-bottom: 20px;
}

/* Modal Body */
.amelia-reason-body {
    padding: 0 28px 24px;
}

.amelia-reason-body p {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Textarea Styling */
#ameliaReasonInput {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: #1a1a1a;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f9fafb;
}

#ameliaReasonInput:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #ffffff;
}

#ameliaReasonInput::placeholder {
    color: #9ca3af;
}

/* Error Message */
.amelia-reason-error {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #dc2626;
    font-size: 0.875rem;
}

.amelia-reason-error span {
    line-height: 1.4;
}

/* Modal Footer */
.amelia-modal-footer {
    padding: 20px 28px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid #f3f4f6;
}

/* Button Styling */
.amelia-modal-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: var(--font-body);
}

/* Cancel Button */
#ameliaCancelBtn {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

#ameliaCancelBtn:hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* Submit Button */
#ameliaSubmitBtn {
    background: var(--accent-blue);
    color: #ffffff;
}

#ameliaSubmitBtn:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#ameliaSubmitBtn:active {
    transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 640px) {
    .amelia-reason-content {
        width: 95%;
        margin: 20px;
    }
    
    .amelia-modal-header,
    .amelia-reason-body,
    .amelia-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .amelia-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .amelia-modal-footer {
        flex-direction: column-reverse;
    }
    
    .amelia-modal-btn {
        width: 100%;
    }
}

/* Robust Centering Fix for Amelia Modal */
#ameliaReasonModal.amelia-reason-modal {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 10000 !important;
}

#ameliaReasonModal[style*="display: block"],
#ameliaReasonModal[style*="display: flex"],
#ameliaReasonModal.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.amelia-reason-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.amelia-reason-content {
    margin: auto !important; 
}


/* ========================================
   Admin Panel Modals Styling  
   ======================================== */

/* Admin Modal Container - Hidden by default */
.amelia-admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

/* Show modal when active */
.amelia-admin-modal.active {
    display: flex !important;
}

/* Admin Modal Content Box */
.amelia-admin-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 550px;
    width: 90%;
    animation: adminModalSlideIn 0.3s ease-out;
}

@keyframes adminModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Admin Modal Header */
.amelia-admin-modal-header {
    padding: 24px 28px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amelia-admin-modal-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.amelia-admin-modal-close {
    font-size: 28px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    font-weight: 300;
}

.amelia-admin-modal-close:hover {
    color: #ef4444;
}

/* Admin Modal Body */
.amelia-admin-modal-body {
    padding: 24px 28px;
}

.amelia-admin-modal-body label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.amelia-admin-modal-body input[type="text"],
.amelia-admin-modal-body textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1a1a1a;
    margin-bottom: 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f9fafb;
}

.amelia-admin-modal-body input[type="text"]:focus,
.amelia-admin-modal-body textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #ffffff;
}

.amelia-admin-modal-body textarea {
    resize: vertical;
    min-height: 120px;
}

/* Admin Modal Footer */
.amelia-admin-modal-footer {
    padding: 20px 28px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid #f3f4f6;
    background: #fafafa;
    border-radius: 0 0 12px 12px;
}

/* Admin Button Styling */
.amelia-admin-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Secondary Button (Cancel) */
.amelia-admin-btn-secondary {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.amelia-admin-btn-secondary:hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* Primary Button (Send/Approve) */
.amelia-admin-btn-primary {
    background: #3b82f6;
    color: #ffffff;
}

.amelia-admin-btn-primary:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.amelia-admin-btn-primary:active {
    transform: translateY(1px);
}

/* Responsive Design for Admin Modals */
@media (max-width: 640px) {
    .amelia-admin-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .amelia-admin-modal-header,
    .amelia-admin-modal-body,
    .amelia-admin-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .amelia-admin-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .amelia-admin-modal-footer {
        flex-direction: column-reverse;
    }
    
    .amelia-admin-btn {
        width: 100%;
    }
}

/* ===== Privacy Policy Page Styles ===== */
.aacurate-privacy-policy {
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-primary, "Inter", sans-serif);
    color: var(--text-dark, #1f2937);
    line-height: 1.7;
}

.privacy-intro .lead-text {
    font-size: 1.15rem;
    color: var(--text-muted, #4b5563);
    border-left: 4px solid var(--primary-blue, #1e3a8a);
    padding-left: 20px;
    margin-bottom: 40px;
    background: var(--bg-light, #f8fafc);
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.aacurate-privacy-policy h2 {
    color: var(--primary-blue, #1e3a8a);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #eff6ff;
    border-radius: 8px;
    color: var(--secondary-blue, #3b82f6);
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.custom-list li::before {
    content: "•";
    color: var(--secondary-blue, #3b82f6);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.custom-list strong {
    color: var(--primary-blue, #1e3a8a);
}

.privacy-contact {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 40px;
    border-radius: 16px;
    margin-top: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.privacy-contact h2 {
    margin-top: 0;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary-blue, #3b82f6);
}

.contact-card strong {
    color: var(--primary-blue, #1e3a8a);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card a, .contact-card span {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-card a:hover {
    color: var(--secondary-blue, #3b82f6);
}

@media (max-width: 768px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    .privacy-contact {
        padding: 24px;
    }
}
/* ============================================================ */
/* AACURATE PREMIUM MY ACCOUNT ENHANCEMENTS                      */
/* ============================================================ */

/* 1. Layout Structure: Sidebar + Content Side-by-Side */
@media (min-width: 992px) {
    .woocommerce-account .woocommerce {
        display: flex !important;
        gap: 40px !important;
        align-items: flex-start !important;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    .woocommerce-MyAccount-navigation {
        width: 280px !important;
        flex-shrink: 0 !important;
        background: #fff !important;
        border-radius: 20px !important;
        padding: 20px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
        border: 1px solid #f1f5f9 !important;
        position: sticky;
        top: 100px;
    }
    .woocommerce-MyAccount-content {
        flex-grow: 1 !important;
    }
}

/* 2. Sidebar Navigation Styling */
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 8px !important;
}
.woocommerce-MyAccount-navigation ul li a {
    display: flex !important;
    align-items: center !important;
    padding: 14px 20px !important;
    color: #64748b !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    font-size: 15px !important;
}
.woocommerce-MyAccount-navigation ul li a:hover {
    background: #eff6ff !important;
    color: #2563eb !important;
    transform: translateX(5px);
}
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: linear-gradient(135deg, #1e3a8a, #2563eb) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2) !important;
}

/* 3. Hide Ghost Greetings & Redundant Elements */
.woocommerce-MyAccount-content > p:first-of-type,
.woocommerce-MyAccount-content > p,
.header-account span.greeting,
#ghost-dashboard,
.woo-dashboard-welcome,
.woocommerce-MyAccount-content > h3 {
    display: none !important;
}

/* If the ghost greeting is injected via nav menu */
.header-account > a + span,
.header-account > .account-link + br + span {
    display: none !important;
}

/* 4. Dashboard Grid Layout Fix */
.acc-dashboard { font-family: 'Inter', sans-serif; }

.acc-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(30,58,138,0.2);
    position: relative;
    overflow: hidden;
}

.acc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.acc-stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}

.acc-actions-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.acc-action-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.3s;
}
.acc-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #dbeafe;
}

.acc-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.acc-contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #f1f5f9;
}

.acc-promo-card {
    background: #1e293b;
    border-radius: 20px;
    padding: 24px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-btn {
    background: #3b82f6;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
}

/* 5. Clean up Header Clutter */
header.site-header span {
    font-size: 0 !important; /* Hack to hide ghost text while keeping structure if needed */
}
header.site-header span:empty { display: none; }

/* ============================================================
   AACURATE FINVEST – PREMIUM MY ACCOUNT STYLES
   ============================================================ */

/* ─── Reset ─────────────────────────────────────────────── */
.woocommerce-account .entry-title,
.woocommerce-account .page-title,
.woocommerce-account h1.page-title { display: none !important; }

.woocommerce-account .woocommerce > p:first-of-type,
.woocommerce-MyAccount-content > p { display: none !important; }

/* ─── Layout Wrapper ──────────────────────────────────────── */
.aac-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 0;
    font-family: 'Inter','Segoe UI',sans-serif;
}
@media (max-width: 860px) {
    .aac-layout { flex-direction: column; gap: 24px; }
}

/* ─── Sidebar ─────────────────────────────────────────────── */
.aac-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
}
@media (max-width: 860px) {
    .aac-sidebar { width: 100%; position: static; }
}

.aac-nav {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.aac-nav-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}
.aac-nav-avatar {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: #fff;
    flex-shrink: 0;
}
.aac-nav-username { font-weight: 700; font-size: 15px; color: #fff; }
.aac-nav-email    { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }

.aac-nav-list {
    list-style: none !important;
    padding: 12px !important;
    margin: 0 !important;
}
.aac-nav-item { margin: 3px 0 !important; }
.aac-nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 13px 16px !important;
    border-radius: 12px !important;
    color: #475569 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
}
.aac-nav-link:hover {
    background: #eff6ff !important;
    color: #2563eb !important;
    transform: translateX(4px) !important;
}
.aac-nav-item.is-active .aac-nav-link {
    background: linear-gradient(135deg, #1e3a8a, #2563eb) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37,99,235,0.3) !important;
}
.aac-nav-icon { font-size: 18px; }

/* ─── Content Area ────────────────────────────────────────── */
.aac-content { flex: 1; min-width: 0; }
.woocommerce-MyAccount-content { flex: 1; min-width: 0; }

/* ─── Page Header ─────────────────────────────────────────── */
.aac-page-header { margin-bottom: 28px; }
.aac-page-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin: 0 0 6px 0 !important;
    border: none !important;
}
.aac-page-sub { font-size: 13px; color: #94a3b8; margin: 0; }

/* ─── Orders Page ─────────────────────────────────────────── */
.aac-orders-list { display: flex; flex-direction: column; gap: 16px; }

.aac-order-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.aac-order-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
@media(max-width:640px){ .aac-order-card { grid-template-columns: 1fr; } }

.aac-order-num  { font-weight: 800; font-size: 15px; color: #1e293b; }
.aac-order-date { font-size: 12px; color: #94a3b8; margin-top: 3px; }
.aac-order-items { font-size: 13px; color: #475569; margin-bottom: 4px; }
.aac-order-total { font-size: 16px; font-weight: 800; color: #1e3a8a; }

.aac-order-actions { display: flex; align-items: center; gap: 12px; }
.aac-status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.aac-btn-view {
    background: #eff6ff;
    color: #2563eb !important;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s;
    white-space: nowrap;
}
.aac-btn-view:hover { background: #dbeafe; }

/* ─── Addresses Page ──────────────────────────────────────── */
.aac-address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media(max-width:640px){ .aac-address-grid { grid-template-columns: 1fr; } }

.aac-address-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.aac-addr-header { display: flex; align-items: flex-start; gap: 14px; }
.aac-addr-icon { font-size: 28px; }
.aac-addr-title { font-size: 16px; font-weight: 800; color: #1e293b; margin: 0 0 4px 0 !important; }
.aac-addr-sub   { font-size: 12px; color: #94a3b8; margin: 0; }
.aac-addr-body  { flex: 1; }
.aac-address-text {
    font-style: normal;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    border-left: 3px solid #dbeafe;
    padding-left: 14px;
}
.aac-addr-empty { font-size: 13px; color: #94a3b8; font-style: italic; }
.aac-addr-edit-btn {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb !important;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none !important;
    transition: background 0.2s;
    align-self: flex-start;
}
.aac-addr-edit-btn:hover { background: #dbeafe; }

/* ─── Account Details Form ────────────────────────────────── */
.aac-form { display: flex; flex-direction: column; gap: 0; }
.aac-form-section {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.aac-form-section-title {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin: 0 0 22px 0 !important;
    padding-bottom: 14px !important;
    border-bottom: 2px solid #f1f5f9 !important;
    display: flex; align-items: center; gap: 8px;
}
.aac-optional { font-size: 12px; color: #94a3b8; font-weight: 500; }
.aac-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media(max-width:640px){ .aac-form-row-2 { grid-template-columns: 1fr; } }
.aac-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.aac-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin: 0;
}
.aac-input {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    color: #1e293b !important;
    background: #f8fafc !important;
    outline: none !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    font-family: 'Inter','Segoe UI',sans-serif !important;
}
.aac-input:focus {
    border-color: #3b82f6 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1) !important;
}
.aac-help-text { font-size: 12px; color: #94a3b8; }
.aac-form-footer { display: flex; align-items: center; gap: 16px; }

/* ─── Shared Buttons ──────────────────────────────────────── */
.aac-btn-primary,
input[type="submit"].aac-btn-primary,
button.aac-btn-primary {
    display: inline-block !important;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6) !important;
    color: #fff !important;
    padding: 14px 28px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 6px 16px rgba(37,99,235,0.2) !important;
}
.aac-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 24px rgba(37,99,235,0.3) !important;
    color: #fff !important;
}

/* ─── Empty State ─────────────────────────────────────────── */
.aac-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}
.aac-empty-icon { font-size: 56px; margin-bottom: 16px; }
.aac-empty-state h3 { font-size: 20px; font-weight: 800; color: #1e293b; margin-bottom: 10px; }
.aac-empty-state p { color: #64748b; margin-bottom: 24px; }

/* ─── Pagination ──────────────────────────────────────────── */
.aac-pagination { display: flex; gap: 12px; margin-top: 24px; justify-content: center; }
.aac-page-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #2563eb !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.2s;
}
.aac-page-btn:hover { background: #eff6ff; border-color: #bfdbfe; }

/* ─── WooCommerce Notice Styling ──────────────────────────── */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info {
    border-radius: 14px !important;
    border-left: 4px solid #3b82f6 !important;
    padding: 16px 20px !important;
    margin-bottom: 20px !important;
}

/* ─── WooCommerce standard nav fallback (if custom nav not used) ─── */
.woocommerce-MyAccount-navigation {
    background: #ffffff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
    border: 1px solid #f1f5f9 !important;
    padding: 12px !important;
}
.woocommerce-MyAccount-navigation ul { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.woocommerce-MyAccount-navigation ul li { margin: 3px 0 !important; }
.woocommerce-MyAccount-navigation ul li a {
    display: flex !important; align-items: center !important; gap: 10px !important;
    padding: 13px 16px !important; border-radius: 12px !important;
    color: #475569 !important; font-weight: 600 !important;
    font-size: 14px !important; text-decoration: none !important;
    transition: all 0.2s !important;
}
.woocommerce-MyAccount-navigation ul li a:hover { background: #eff6ff !important; color: #2563eb !important; }
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: linear-gradient(135deg, #1e3a8a, #2563eb) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37,99,235,.3) !important;
}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard a::before { content: '🏠  '; }
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--orders a::before    { content: '📋  '; }
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-address a::before { content: '📍  '; }
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-account a::before { content: '👤  '; }
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a::before { content: '🚪  '; }
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--downloads a::before { content: '📥  '; }

/* ─── Main account container override (WC default adds flex via plugin) ── */
@media (min-width: 860px) {
    .woocommerce-account .woocommerce {
        display: flex !important;
        gap: 32px !important;
        align-items: flex-start !important;
    }
    .woocommerce-MyAccount-navigation {
        width: 260px !important;
        flex-shrink: 0 !important;
        position: sticky !important;
        top: 90px !important;
    }
    .woocommerce-MyAccount-content { flex: 1 !important; min-width: 0 !important; }
}
