.elementor-212 .elementor-element.elementor-element-719eafd{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7e98942 *//* ─── GLOBAL RESET & TOKENS ─── */
:root {
    --wfm-bg: #121418;
    --wfm-surface: #1A1D24;
    --wfm-blue: #4A90E2;
    --wfm-blue-grad: linear-gradient(135deg, #4A90E2, #7BB8F0);
    --wfm-text-main: #F0F2F5;
    --wfm-text-muted: rgba(240,242,245,0.65);
    --wfm-font: 'Inter', -apple-system, sans-serif;
    
    --wfm-glass-bg: rgba(255, 255, 255, 0.03);
    --wfm-glass-blur: blur(20px) saturate(1.2);
    --wfm-glow-blue: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.wfm-master-wrap {
    font-family: var(--wfm-font);
    background: var(--wfm-bg);
    color: var(--wfm-text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.wfm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
}

/* ─── ANIMATIONS ─── */
@keyframes wfmFadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
.wfm-animate-up { animation: wfmFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.wfm-delay-1 { animation-delay: 0.1s; }
.wfm-delay-2 { animation-delay: 0.2s; }
.wfm-delay-3 { animation-delay: 0.3s; }

/* ─── TYPOGRAPHY ─── */
.wfm-h1 {
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 20px 0;
    color: white;
    letter-spacing: -0.03em;
}

.wfm-h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.wfm-h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 5px 0;
}

.wfm-gradient-text {
    background: var(--wfm-blue-grad);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important; 
    display: inline-block;
}

.wfm-lead {
    font-size: 1.15rem;
    color: var(--wfm-text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.wfm-kicker {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--wfm-blue);
    margin-bottom: 15px;
}

.wfm-body-text p {
    font-size: 1.05rem;
    color: var(--wfm-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

/* ─── BUTTONS ─── */
.wfm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px; 
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 54px;
}

.wfm-btn-primary {
    background: linear-gradient(180deg, #5ea4f0 0%, #4A90E2 40%, #2d6ab5 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(74,144,226,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}

.wfm-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--wfm-glow-blue), inset 0 1px 0 rgba(255,255,255,0.4);
}

.wfm-btn-secondary {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
}

.wfm-btn-secondary:hover {
    background: rgba(74,144,226,0.1);
    border-color: rgba(74,144,226,0.4);
    box-shadow: var(--wfm-glow-blue);
    transform: translateY(-2px);
}

/* ─── LAYOUT GRIDS ─── */
.wfm-split-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; min-height: 75vh;
}

.wfm-grid-2 {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch;
}

.wfm-grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* ─── VISUALS & CARDS ─── */
.wfm-hero-img-box {
    position: relative; border-radius: 24px; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
}
.wfm-hero-img { width: 100%; max-height: 500px; object-fit: cover; display: block; }

.wfm-glass-card {
    background: var(--wfm-glass-bg);
    backdrop-filter: var(--wfm-glass-blur);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Detail Rows (Used for info and services) */
.wfm-detail-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wfm-detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.wfm-detail-label { color: var(--wfm-text-muted); font-weight: 600; font-size: 0.95rem; }
.wfm-detail-value { color: white; font-weight: 600; text-align: right; }
.wfm-detail-value a { color: var(--wfm-blue); text-decoration: none; }
.wfm-detail-value a:hover { text-decoration: underline; }

/* Service List Rows */
.wfm-service-row {
    background: var(--wfm-glass-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px;
    transition: background 0.2s, border-color 0.2s;
}
.wfm-service-row:hover { background: rgba(255,255,255,0.05); border-color: rgba(74,144,226,0.3); }
.wfm-service-info { display: flex; flex-direction: column; gap: 4px; }
.wfm-service-name { color: white; font-weight: 700; font-size: 1.1rem; }
.wfm-service-sub { color: var(--wfm-text-muted); font-size: 0.85rem; }
.wfm-service-price { color: var(--wfm-blue); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; white-space: nowrap; }

/* Review Stars */
.wfm-stars { color: var(--wfm-blue); margin-bottom: 15px; letter-spacing: 2px; }

/* Other Studios Links */
.wfm-loc-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; background: #222631; border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; text-decoration: none; margin-bottom: 12px; transition: all 0.2s;
}
.wfm-loc-link:hover { background: #2a2f3d; border-color: var(--wfm-blue); transform: translateX(5px); }
.wfm-loc-link-title { color: white; font-weight: 700; }
.wfm-loc-link-sub { color: rgba(240,242,245,0.5); font-size: 0.85rem; margin-left: 10px; }

/* ─── STICKY FOOTER ─── */
#wfm-sticky-foot {
    position: fixed; bottom: -100px; left: 0; right: 0;
    background: rgba(18, 20, 24, 0.85); backdrop-filter: blur(20px) saturate(1.5);
    border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 24px; z-index: 999;
    display: flex; justify-content: space-between; align-items: center;
    transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}
#wfm-sticky-foot.visible { bottom: 0; }

/* ─── MOBILE SAFE ZONES ─── */
@media (max-width: 1024px) {
    .wfm-grid-2, .wfm-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .wfm-container { padding: 50px 20px; }
    .wfm-split-grid { grid-template-columns: 1fr; gap: 40px; }
    .wfm-hero-split { display: flex; flex-direction: column; } 
    .wfm-hero-img-box { order: 2; margin-top: 10px; }
    
    .wfm-h1 { font-size: 2.8rem; }
    .wfm-btn { width: 100%; }
    
    .wfm-service-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .wfm-loc-link { flex-direction: column; align-items: flex-start; gap: 4px; }
    .wfm-loc-link-sub { margin-left: 0; }
    
    .wfm-desktop-only { display: none !important; }
    #wfm-sticky-foot { justify-content: center; padding: 12px 20px; }
}/* End custom CSS */