.elementor-650 .elementor-element.elementor-element-0c1c690{--display:flex;--margin-top:-5px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-650 .elementor-element.elementor-element-a69f7dc .pill-label{color:#FFFFFF;}.elementor-650 .elementor-element.elementor-element-a69f7dc p{line-height:32px;}.elementor-650 .elementor-element.elementor-element-0767c82{--display:flex;}.elementor-650 .elementor-element.elementor-element-3a996d2{--display:flex;}/* Start custom CSS */:root {
            --c-text-main: #1A1A1A;
            --c-text-muted: #666666;
            --c-brand-red: #CC0000;
            --c-brand-red-hover: #AA0000;
            --c-dark-bg: #0A0A0A;
            
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: rgba(255, 255, 255, 0.5);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            --glass-blur: blur(20px);

            --radius-lg: 24px;
            --radius-md: 12px;
            --max-w: 1280px; 
            --pad-side: 24px;

            --font-head: 'Outfit', sans-serif;
            --font-body: 'DM Sans', sans-serif;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: var(--font-body);
            color: var(--c-text-main);
            background-color: #FAFAFA;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* =========================================
           2. GLOBAL BACKGROUND (LIVELY BLOBS)
           ========================================= */
        .bg-layer {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            z-index: -2; overflow: hidden; background: #FAFAFA; pointer-events: none;
        }
        .blob {
            position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.4; will-change: transform;
        }
        .blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(204, 0, 0, 0.08); }
        .blob-2 { top: 40%; right: -10%; width: 45vw; height: 45vw; background: rgba(0, 102, 255, 0.06); }
        .blob-3 { bottom: -20%; left: 20%; width: 40vw; height: 40vw; background: rgba(255, 153, 0, 0.05); }

        /* =========================================
           3. UTILITIES & COMPONENTS
           ========================================= */
        .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-side); position: relative; z-index: 3; }
        
        h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
        h1 { font-size: 56px; margin-bottom: 24px; }
        h2 { font-size: 40px; margin-bottom: 24px; } 
        h3 { font-size: 28px; margin-bottom: 16px; }
        h4 { font-size: 22px; margin-bottom: 12px; }
        h5 { font-size: 18px; margin-bottom: 8px; }
        
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        
        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 14px 32px; font-weight: 600; border-radius: 100px;
            cursor: pointer; transition: all 0.3s ease; font-size: 16px; border: none;
        }
        .btn-primary { background-color: var(--c-brand-red); color: white; box-shadow: 0 4px 14px rgba(204, 0, 0, 0.3); }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4); background-color: var(--c-brand-red-hover); color: white; }
        
        .btn-outline { border: 2px solid var(--c-brand-red); color: var(--c-brand-red); background: transparent; }
        .btn-outline:hover { background: var(--c-brand-red); color: white; }

        .pill-label {
            display: inline-flex; align-items: center; justify-content: center; gap: 12px;
            color: var(--c-brand-red); font-size: 18px; font-weight: 700; text-transform: uppercase;
            margin-bottom: 16px; letter-spacing: 0.1em; position: relative; z-index: 2; 
        }
        .pill-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--c-brand-red); }

        .glass-panel {
            background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); border-radius: var(--radius-lg);
        }

        /* Scroll Reveals */
        .reveal { opacity: 0; visibility: hidden; transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
        .elementor-editor-active .reveal, .reveal.active { opacity: 1; visibility: visible; transform: none !important; }
        .reveal-up { transform: translateY(40px); }
        .reveal-left { transform: translateX(-40px); }
        .reveal-right { transform: translateX(40px); }
        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }
        .delay-300 { transition-delay: 0.3s; }

        /* =========================================
           4. HEADER
           ========================================= */
        .header { position: sticky; top: 20px; z-index: 1000; margin: 0 var(--pad-side); }
        .header-glass {
            display: flex; justify-content: space-between; align-items: center;
            height: 72px; padding: 0 24px; border-radius: var(--radius-lg);
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 8px 32px rgba(0,0,0,0.05);
        }
        .brand { font-weight: 700; font-size: 20px; font-family: var(--font-head); display: flex; align-items: center; gap: 8px; }
        .brand span { color: var(--c-brand-red); }
        .nav-list { display: flex; gap: 32px; }
        .nav-item { font-size: 16px; font-weight: 700; color: var(--c-text-main); }
        .nav-item:hover { color: var(--c-brand-red); }
        .mobile-toggle { display: none; }

        /* =========================================
           5. SECTIONS
           ========================================= */
        .section-padding { padding: 100px 0; }

        /* --- HERO: CENTERED GLASS --- */
        .hero-centered {
            position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center;
            margin-top: -90px; padding-top: 90px; overflow: hidden;
        }
        .hero-bg-img {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
        }
        .hero-bg-img img { width: 100%; height: 100%; object-fit: cover; }
        .hero-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
            background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 100%);
        }
        .hero-glass-box {
            position: relative; z-index: 2; text-align: center; max-width: 900px;
            padding: 80px 40px;
            color: white; margin: 0 var(--pad-side);
        }
        .hero-glass-box h1 {
            color: var(--c-brand-red);
        }
        .hero-glass-box .pill-label::before {
            display: none;
        }
        .hero-glass-box p { font-size: 22px; color: rgba(255,255,255,0.9); margin-bottom: 0; }

        /* --- APPOINTMENT TYPES (CARDS) --- */
        .appt-types-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px;
            margin-top: 40px;
        }
        .appt-card {
            background: white; border-radius: var(--radius-lg); overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.4s ease; text-decoration: none; color: var(--c-text-main);
            display: flex; flex-direction: column; position: relative;
        }
        .appt-card:hover {
            transform: translateY(-8px); box-shadow: 0 20px 50px rgba(204,0,0,0.1);
            border-color: rgba(204,0,0,0.2);
        }
        .appt-cover {
            width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative;
        }
        .appt-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .appt-card:hover .appt-cover img { transform: scale(1.05); }
        
        .appt-staff-badge {
            position: absolute; bottom: 16px; left: 16px; background: white; padding: 6px 16px 6px 6px;
            border-radius: 100px; display: flex; align-items: center; gap: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1); font-weight: 600; font-size: 14px;
        }
        .appt-staff-badge img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
        
        .appt-body { padding: 32px 24px; flex: 1; display: flex; flex-direction: column; }
        .appt-body h5 { font-size: 22px; margin-bottom: 12px; }
        .appt-location { display: flex; align-items: center; gap: 8px; color: var(--c-text-muted); font-size: 16px; }
        .appt-location svg { color: var(--c-brand-red); width: 20px; height: 20px; }

        /* --- BOOKING INTERFACE (CALENDAR + SIDEBAR) --- */
        .booking-layout {
            display: grid; grid-template-columns: 1fr 380px; gap: 40px; margin-top: 40px;
        }
        
        /* Calendar Panel */
        .calendar-panel {
            background: white; border-radius: var(--radius-lg); padding: 10px 40px 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05);
        }
        .cal-header {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid #EFEFEF;
        }
        .cal-header h4 { margin: 0; font-size: 28px; }
        .cal-nav-btn {
            width: 40px; height: 40px; border-radius: 50%; background: #F5F5F5;
            display: flex; align-items: center; justify-content: center;
            border: none; cursor: pointer; transition: 0.3s; color: var(--c-text-main);
        }
        .cal-nav-btn:hover { background: var(--c-brand-red); color: white; }
        
        .cal-table { width: 100%; border-collapse: separate; border-spacing: 4px; }
        .cal-table th { padding: 12px 0; color: var(--c-text-muted); font-weight: 500; font-size: 15px; }
        .cal-table td { text-align: center; vertical-align: middle; height: 60px; }
        
        .day-wrapper {
            width: 44px; height: 44px; margin: 0 auto; display: flex; align-items: center; justify-content: center;
            border-radius: 50%; font-weight: 500; cursor: pointer; transition: all 0.3s ease;
            font-size: 16px; color: var(--c-text-main); background: transparent;
        }
        .day-wrapper:hover { background: #F0F0F0; }
        .day-wrapper.weekend { color: var(--c-text-muted); }
        .day-wrapper.disabled { opacity: 0.3; pointer-events: none; }
        .day-wrapper.today { border: 2px solid var(--c-brand-red); color: var(--c-brand-red); }
        .day-wrapper.selected { background: var(--c-brand-red); color: white; box-shadow: 0 4px 12px rgba(204,0,0,0.3); border: none; }

        /* Time Slots Grid */
        .slots-container { margin-top: 40px; }
        .slots-container h5 { margin-bottom: 20px; font-size: 20px; }
        .slots-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 16px;
        }
        .slot-btn {
            background: transparent; border: 2px solid var(--c-brand-red); color: var(--c-brand-red);
            border-radius: 12px; padding: 12px 0; font-weight: 600; font-size: 16px;
            cursor: pointer; transition: 0.3s; text-align: center; font-family: inherit;
        }
        .slot-btn:hover { background: var(--c-brand-red); color: white; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(204,0,0,0.2); }

        .timezone-wrap {
            margin-top: 32px; padding-top: 24px; border-top: 1px solid #EFEFEF;
            display: flex; align-items: center; gap: 12px; color: var(--c-text-muted); font-size: 15px;
        }
        .timezone-select {
            padding: 8px 16px; border-radius: 8px; border: 1px solid #DDD;
            font-family: inherit; font-size: 15px; background: #FAFAFA; outline: none;
        }

        /* Operator Sidebar */
        .operator-sidebar {
            background: white; border-radius: var(--radius-lg); padding: 40px 32px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05);
            position: sticky; top: 120px;
        }
        .operator-sidebar h4 { margin-bottom: 24px; font-size: 24px; }
        
        .sidebar-section { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #EFEFEF; }
        .sidebar-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
        
        .sidebar-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: #999; font-weight: 700; margin-bottom: 16px; display: block; }
        
        .detail-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--c-text-main); font-size: 16px; font-weight: 500; }
        .detail-row svg { color: var(--c-brand-red); width: 20px; height: 20px; flex-shrink: 0; }
        
        .operator-profile { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
        .operator-sidebar .operator-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
        .operator-info h5 { margin: 0 0 4px 0; font-size: 18px; }
        .operator-info p { margin: 0; font-size: 14px; color: var(--c-text-muted); line-height: 1.4; }

        /* FOOTER */
        .footer { padding: 80px 0 32px; background: white; border-top: 1px solid #F0F0F0; font-size: 16px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
        .footer a { display: block; margin-bottom: 12px; color: var(--c-text-muted); }
        .footer a:hover { color: var(--c-brand-red); }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .booking-layout { grid-template-columns: 1fr; }
            .operator-sidebar { position: relative; top: 0; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 42px; }
            .hero-centered p { font-size: 18px; }
            .nav-list, .header .btn { display: none; }
            .mobile-toggle { display: block; }
            .calendar-panel { padding: 32px 20px; }
            .day-wrapper { width: 36px; height: 36px; font-size: 15px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
        }/* End custom CSS */