/**
 * Vesta IT - Main Component & Design System Styles (RTL)
 * Super lightweight, zero CSS bloat, GPU-accelerated micro-interactions.
 */

@font-face {
    font-family: 'Pinar';
    src: local('Pinar SemiBold'),
         url('../fonts/Pinar-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pinar';
    src: local('Pinar Bold'),
         local('Pinar SemiBold'),
         url('../fonts/Pinar-SemiBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pinar';
    src: local('Pinar ExtraBold'),
         url('../fonts/Pinar-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pinar';
    src: local('Pinar Black'),
         local('Pinar ExtraBold'),
         url('../fonts/Pinar-ExtraBold.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   Typography & Headings
   ========================================================================== */
h1, h2, h3, h4, h5, h6, .v-heading {
    font-family: var(--v-font-heading, 'Pinar', 'Vazirmatn', sans-serif);
    font-weight: 700;
    line-height: 1.65;
    color: var(--v-text);
    margin-bottom: 0.8rem;
    letter-spacing: 0;
}

h1 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); line-height: 1.6; }
h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.6; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.55; }
h4 { font-size: 1.15rem; font-weight: 700; line-height: 1.5; }
h5 { font-size: 1.05rem; font-weight: 600; line-height: 1.5; }
h6 { font-size: 0.92rem; font-weight: 600; line-height: 1.5; }

p {
    margin-bottom: 1.2rem;
    color: var(--v-text-muted);
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.9;
}

.text-gradient {
    background: var(--v-gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-yellow { color: var(--v-yellow); }
.text-cyan { color: var(--v-cyan); }
.text-emerald { color: var(--v-emerald); }
.text-purple { color: var(--v-purple); }
.text-amber { color: var(--v-amber); }

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.v-btn {
    font-family: var(--v-font-heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--v-radius-md);
    transition: var(--v-transition);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.v-btn:active {
    transform: scale(0.97);
}

.v-btn-primary {
    background: var(--v-gradient-brand);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.v-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.v-btn-yellow {
    background: var(--v-gradient-yellow);
    color: #0f172a;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.v-btn-yellow:hover {
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.55);
    transform: translateY(-2px);
    color: #0f172a;
}

.v-btn-secondary {
    background: var(--v-surface-2);
    color: var(--v-text);
    border: 1px solid var(--v-border);
}

.v-btn-secondary:hover {
    background: var(--v-border);
    color: var(--v-text);
    transform: translateY(-2px);
}

.v-btn-emerald {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.v-btn-emerald:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.v-btn-outline {
    background: transparent;
    color: var(--v-text);
    border: 1.5px solid var(--v-border);
}

.v-btn-outline:hover {
    border-color: var(--v-cyan);
    color: var(--v-cyan);
    background: rgba(14, 165, 233, 0.05);
}

.v-btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--v-radius-sm);
}

.v-btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: var(--v-radius-lg);
}

.v-btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--v-radius-md);
    background: var(--v-surface-2);
    border: 1px solid var(--v-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--v-text);
}

.v-btn-icon:hover {
    background: var(--v-border);
    color: var(--v-cyan);
}

/* ==========================================================================
   Badges & Tags
   ========================================================================== */
.v-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--v-radius-full);
    border: 1px solid transparent;
}

.v-badge-cyan {
    background: rgba(14, 165, 233, 0.1);
    color: var(--v-cyan);
    border-color: rgba(14, 165, 233, 0.2);
}

.v-badge-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--v-emerald);
    border-color: rgba(16, 185, 129, 0.2);
}

.v-badge-purple {
    background: rgba(99, 102, 241, 0.1);
    color: var(--v-purple);
    border-color: rgba(99, 102, 241, 0.2);
}

.v-badge-amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--v-amber);
    border-color: rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.v-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--v-border);
    transition: var(--v-transition);
}

[data-theme="dark"] .v-header {
    background: rgba(11, 15, 25, 0.85);
}

.v-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

.v-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--v-text);
}

.v-brand-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.v-brand-badge {
    background: var(--v-gradient-brand);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: var(--v-radius-full);
    font-weight: 700;
}

.v-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.v-nav-link {
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--v-text-muted);
    border-radius: var(--v-radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.v-nav-link:hover, .v-nav-link.active {
    color: var(--v-cyan);
    background: rgba(14, 165, 233, 0.08);
}

.v-nav-dropdown {
    position: relative;
}

.v-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    background: var(--v-surface);
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-md);
    box-shadow: var(--v-shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--v-transition);
    z-index: 100;
}

.v-nav-dropdown:hover .v-dropdown-menu,
.v-nav-dropdown:focus-within .v-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--v-radius-sm);
    color: var(--v-text);
}

.v-dropdown-item:hover {
    background: var(--v-surface-2);
    color: var(--v-cyan);
}

.v-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v-mobile-toggle {
    display: none;
}

/* ==========================================================================
   Hero Sections
   ========================================================================== */
.v-hero-home {
    position: relative;
    padding: 80px 0 60px;
    background: var(--v-gradient-hero);
    overflow: hidden;
}

.v-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 48px;
}

.v-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.v-hero-badge {
    margin-bottom: 20px;
}

.v-hero-title {
    margin-bottom: 20px;
    line-height: 1.25;
}

.v-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 580px;
}

.v-hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.v-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--v-border);
    width: 100%;
}

.v-stat-item {
    display: flex;
    flex-direction: column;
}

.v-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--v-text);
}

.v-stat-label {
    font-size: 0.85rem;
    color: var(--v-text-muted);
}

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

.v-hero-card-main {
    background: var(--v-surface);
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-xl);
    padding: 28px;
    box-shadow: var(--v-shadow-lg);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
}

.v-floating-badge {
    position: absolute;
    background: var(--v-surface);
    border: 1px solid var(--v-border);
    padding: 12px 18px;
    border-radius: var(--v-radius-md);
    box-shadow: var(--v-shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 4s ease-in-out infinite alternate;
}

.v-floating-badge.top-left {
    top: -20px;
    left: -20px;
}

.v-floating-badge.bottom-right {
    bottom: -20px;
    right: -20px;
    animation-delay: 2s;
}

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

/* ==========================================================================
   Section Layouts & Grid
   ========================================================================== */
.v-section {
    padding: 80px 0;
}

.v-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.v-section-subtitle {
    font-size: 1.05rem;
    color: var(--v-text-muted);
}

.v-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.v-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.v-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* ==========================================================================
   Cards (Services, Courses, Accounts, Blog)
   ========================================================================== */
.v-card {
    background: var(--v-surface);
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-lg);
    padding: 28px;
    transition: var(--v-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.v-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--v-shadow-lg);
    border-color: rgba(14, 165, 233, 0.4);
}

.v-card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--v-radius-md);
    background: rgba(14, 165, 233, 0.1);
    color: var(--v-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.v-card-icon-box svg {
    width: 30px;
    height: 30px;
}

.v-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.v-card-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.v-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--v-border-subtle);
}

/* Course & Product Cards */
.v-card-media {
    position: relative;
    border-radius: var(--v-radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16 / 9;
    background: var(--v-surface-2);
}

.v-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.v-card:hover .v-card-media img {
    transform: scale(1.05);
}

.v-card-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--v-emerald);
}

.v-card-price small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--v-text-muted);
}

/* ==========================================================================
   SMS Panel & Pricing Tables
   ========================================================================== */
.v-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: center;
}

.v-pricing-card {
    background: var(--v-surface);
    border: 1.5px solid var(--v-border);
    border-radius: var(--v-radius-xl);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: var(--v-transition);
}

.v-pricing-card.featured {
    border-color: var(--v-cyan);
    box-shadow: var(--v-shadow-glow);
    transform: scale(1.04);
}

.v-pricing-header {
    margin-bottom: 24px;
}

.v-pricing-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--v-text);
    margin: 16px 0;
}

.v-pricing-features {
    text-align: right;
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v-pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--v-text-muted);
}

.v-pricing-feature-item svg {
    color: var(--v-emerald);
}

/* ==========================================================================
   Booking & Consultation System
   ========================================================================== */
.v-booking-wizard {
    background: var(--v-surface);
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-xl);
    padding: 40px;
    box-shadow: var(--v-shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.v-booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.v-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--v-text-muted);
}

.v-step-item.active {
    color: var(--v-cyan);
}

.v-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--v-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--v-border);
    font-size: 0.95rem;
}

.v-step-item.active .v-step-num {
    background: var(--v-cyan);
    color: #fff;
    border-color: var(--v-cyan);
}

.v-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.v-slot-btn {
    padding: 12px;
    border: 1.5px solid var(--v-border);
    border-radius: var(--v-radius-md);
    background: var(--v-surface-2);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--v-transition);
}

.v-slot-btn:hover, .v-slot-btn.selected {
    border-color: var(--v-cyan);
    background: rgba(14, 165, 233, 0.1);
    color: var(--v-cyan);
}

/* ==========================================================================
   Form Controls
   ========================================================================== */
.v-form-group {
    margin-bottom: 20px;
    text-align: right;
}

.v-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--v-text);
}

.v-form-input, .v-form-select, .v-form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--v-surface-2);
    border: 1.5px solid var(--v-border);
    border-radius: var(--v-radius-md);
    color: var(--v-text);
    font-size: 0.95rem;
    transition: var(--v-transition);
}

.v-form-input:focus, .v-form-select:focus, .v-form-textarea:focus {
    border-color: var(--v-cyan);
    background: var(--v-surface);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.v-slot-btn:hover, .v-slot-btn.selected {
    border-color: var(--v-yellow);
    background: var(--v-surface);
    color: var(--v-text);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.25);
}

.v-slot-btn.booked {
    background: rgba(244, 63, 94, 0.06);
    border-color: rgba(244, 63, 94, 0.3);
    color: var(--v-text-muted);
    opacity: 0.65;
    cursor: not-allowed !important;
    text-decoration: line-through;
}

.v-slot-btn.booked:hover {
    border-color: rgba(244, 63, 94, 0.3);
    box-shadow: none;
}

.v-consult-card {
    border: 2.5px solid var(--v-border);
    transition: var(--v-transition);
}

.v-consult-card:hover {
    border-color: var(--v-cyan);
    transform: translateY(-2px);
}

.v-consult-card.selected {
    border-color: var(--v-yellow) !important;
    background: var(--v-surface-2);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25), var(--v-shadow-md);
    position: relative;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.v-footer {
    background: var(--v-surface);
    border-top: 1px solid var(--v-border);
    padding: 70px 0 30px;
    margin-top: auto;
}

.v-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.v-footer-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.v-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 3px;
    border-radius: var(--v-radius-full);
    background: var(--v-gradient-brand);
}

.v-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v-footer-links a {
    color: var(--v-text-muted);
    font-size: 0.92rem;
}

.v-footer-links a:hover {
    color: var(--v-cyan);
    transform: translateX(-4px);
}

.v-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--v-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--v-text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================================================
   Modals & Drawers
   ========================================================================== */
.v-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--v-transition);
}

.v-modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.v-modal-box {
    background: var(--v-surface);
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-xl);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: var(--v-shadow-lg);
    transform: scale(0.95);
    transition: var(--v-transition);
}

.v-modal-backdrop.open .v-modal-box {
    transform: scale(1);
}

.v-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

/* Mobile Navigation Drawer */
.v-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--v-surface);
    border-left: 1px solid var(--v-border);
    z-index: 3000;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--v-shadow-lg);
}

.v-mobile-drawer.open {
    right: 0;
}

.v-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: var(--v-transition);
}

.v-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Article Body Typography & Content Styling
   ========================================================================== */
.v-article-body h2 {
    font-size: 1.65rem;
    margin: 40px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--v-border);
    position: relative;
}

.v-article-body h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--v-cyan);
}

.v-article-body h3 {
    font-size: 1.35rem;
    margin: 32px 0 14px;
}

.v-article-body p {
    margin-bottom: 24px;
}

.v-article-body blockquote {
    margin: 30px 0;
    padding: 20px 24px;
    background: var(--v-surface-2);
    border-right: 4px solid var(--v-cyan);
    border-radius: var(--v-radius-md);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--v-text);
    box-shadow: var(--v-shadow-sm);
}

.v-article-body ul, .v-article-body ol {
    margin: 20px 0 24px 20px;
    padding-right: 20px;
}

.v-article-body ul {
    list-style: disc;
}

.v-article-body ol {
    list-style: decimal;
}

.v-article-body li {
    margin-bottom: 10px;
}

.v-article-body code {
    background: var(--v-surface-2);
    color: var(--v-cyan);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.9em;
    font-family: monospace;
    border: 1px solid var(--v-border);
}

.v-article-body pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: 20px;
    border-radius: var(--v-radius-md);
    overflow-x: auto;
    direction: ltr;
    text-align: left;
    margin: 24px 0;
    font-size: 0.92rem;
}

.v-article-body pre code {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
}

.v-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--v-surface);
    border-radius: var(--v-radius-md);
    overflow: hidden;
    border: 1px solid var(--v-border);
}

.v-article-body th, .v-article-body td {
    padding: 14px 18px;
    text-align: right;
    border-bottom: 1px solid var(--v-border);
}

.v-article-body th {
    background: var(--v-surface-2);
    font-weight: 800;
}

/* ==========================================================================
   Floating Quick Contact & Speed Dial Widget
   ========================================================================== */
.v-quick-contact-wrap {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 2500;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    pointer-events: none;
}

.v-quick-toggle-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--v-gradient-yellow);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
    cursor: pointer;
    border: none;
    transition: var(--v-transition);
    position: relative;
    pointer-events: auto;
}

.v-quick-toggle-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.35);
    animation: v-pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    z-index: -1;
}

@keyframes v-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 0; }
}

.v-quick-toggle-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.v-quick-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--v-transition);
    pointer-events: none;
}

.v-quick-contact-wrap.open .v-quick-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.v-quick-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--v-transition);
    pointer-events: auto;
}

.v-quick-item:hover {
    transform: translateX(4px);
}

.v-quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--v-shadow-md);
    flex-shrink: 0;
}

.v-quick-label {
    background: var(--v-surface);
    color: var(--v-text);
    padding: 6px 14px;
    border-radius: var(--v-radius-full);
    font-size: 0.84rem;
    font-weight: 700;
    box-shadow: var(--v-shadow-md);
    border: 1px solid var(--v-border);
    white-space: nowrap;
}

/* ==========================================================================
   Print & Proforma Invoice Styling
   ========================================================================== */
@media print {
    body * {
        visibility: hidden !important;
    }
    #vesta-proforma-modal,
    #vesta-proforma-modal *,
    #vesta-printable-invoice,
    #vesta-printable-invoice * {
        visibility: visible !important;
    }
    #vesta-proforma-modal {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: auto !important;
        background: #ffffff !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0 !important;
    }
    #vesta-proforma-modal .v-modal-box {
        box-shadow: none !important;
        border: none !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .v-proforma-actions-bar,
    .v-quick-contact-wrap,
    .v-header,
    .v-footer {
        display: none !important;
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .v-nav { display: none; }
    .v-mobile-toggle { display: inline-flex; }
    .v-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .v-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .v-pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .v-pricing-card.featured { transform: none; }
    .v-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .v-hero-content { align-items: center; }
    .v-hero-cta { justify-content: center; }
    .v-hero-stats { justify-content: center; }
    .v-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .v-grid-4, .v-grid-3, .v-grid-2 { grid-template-columns: 1fr; }
    .v-footer-grid { grid-template-columns: 1fr; }
    .v-hero-stats { flex-direction: column; gap: 16px; }
    .v-booking-steps { flex-direction: column; gap: 16px; }
    .v-booking-wizard { padding: 24px 16px; }
    .v-quick-contact-wrap { bottom: 18px; left: 18px; }
}
