/* =========================================
           1. CORE THEME VARIABLES
           ========================================= */
        :root {
            --col-purple: #4A144B;
            --col-pink: #ff3399;
            --col-gold: #d4af37;
            --bg-white: #ffffff;
            --bg-light: #f8f9fa;
            --bg-champagne: #fff9ef;
            --text-dark: #1a1a1a;
            --text-grey: #555;
            --radius-lg: 20px;
            --shadow-card: 0 15px 40px rgba(74, 20, 75, 0.08);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Poppins', sans-serif; background: var(--bg-light); color: var(--text-dark); overflow-x: hidden; }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }

        /* =========================================
           2. NAVIGATION
           ========================================= */
        header {
            background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05); height: 80px; 
            position: sticky; top: 0; z-index: 100;
            display: flex; align-items: center; justify-content: space-between; padding: 0 5%;
        }
        .brand { font-weight: 700; font-size: 24px; color: var(--col-purple); text-decoration: none; display: flex; align-items: center; gap: 8px; }
        .brand span { color: var(--col-pink); }
        .badge-beta { font-size: 10px; background: #eee; padding: 2px 8px; border-radius: 4px; color: #666; text-transform: uppercase; letter-spacing: 1px; }
        
        .btn-nav {
            background: var(--col-purple); color: white; padding: 12px 30px; border-radius: 50px; 
            text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; cursor: pointer; border: none;
        }
        .btn-nav:hover { background: var(--col-pink); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 51, 153, 0.3); }

        /* =========================================
           3. HERO: "THE FEELING GRID"
           ========================================= */
        .hero-section {
            background: white; padding: 80px 0 100px 0; text-align: center;
            border-bottom-left-radius: 50px; border-bottom-right-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02); margin-bottom: 60px;
        }
        .hero-title { 
            font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--col-purple); 
            margin-bottom: 15px; line-height: 1.2;
        }
        .hero-sub { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto 50px auto; font-weight: 300; }

        /* GRID LAYOUT */
        .feelings-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); 
            gap: 15px; max-width: 1000px; margin: 0 auto; padding: 0 20px;
        }

        .feel-card {
            background: var(--bg-light); border: 1px solid #eee; border-radius: 16px;
            padding: 25px 10px; cursor: pointer; transition: var(--transition);
            display: flex; flex-direction: column; align-items: center; gap: 12px;
        }
        .feel-card:hover { transform: translateY(-5px); border-color: var(--col-pink); box-shadow: var(--shadow-card); }
        
        .feel-card.active {
            background: var(--col-purple); color: white; border-color: var(--col-purple);
            transform: scale(1.05); box-shadow: 0 10px 30px rgba(74, 20, 75, 0.2);
        }
        .feel-card.active .emoji { transform: scale(1.2); }
        .feel-card.active .f-text { color: white; }

        .emoji { font-size: 2rem; transition: var(--transition); }
        .f-text { font-weight: 600; font-size: 0.85rem; color: #555; }

        /* =========================================
           4. SPECIALIST LISTINGS
           ========================================= */
        .listing-section { padding-bottom: 80px; min-height: 400px; }
        
        .sec-head { 
            display: flex; justify-content: space-between; align-items: flex-end; 
            margin-bottom: 40px; border-bottom: 1px solid #ddd; padding-bottom: 15px;
        }
        .sec-tit { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--col-purple); margin: 0; }
        .reset-link { 
            color: #888; cursor: pointer; font-size: 0.9rem; text-decoration: none; border-bottom: 1px dotted #888; transition: 0.2s; 
        }
        .reset-link:hover { color: var(--col-pink); border-color: var(--col-pink); }

        .doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }

        /* DOCTOR CARD DESIGN */
        .doc-card {
            background: white; border-radius: 20px; overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05);
            transition: var(--transition); display: flex; flex-direction: column;
            animation: fadeIn 0.6s ease forwards; opacity: 0;
        }
        .doc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-card); border-color: var(--col-pink); }
        @keyframes fadeIn { from{opacity:0; transform:translateY(20px);} to{opacity:1; transform:translateY(0);} }
        
        .doc-mode { text-align: center; padding: 10px; background: #FF3399; color: #fff; font-weight: 550; }
        .doc-header { padding: 25px; display: flex; gap: 20px; align-items: center; border-bottom: 1px solid #f9f9f9; }
        .doc-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid #f8f8f8; }
        .doc-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--col-purple); margin-bottom: 5px; }
        .doc-spec { color: var(--col-pink); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
        .doc-exp { font-size: 0.8rem; color: #999; margin-top: 2px; }

        .doc-body { padding: 20px 25px; flex: 1; }
        .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }
        .tag { background: #f4f6f9; color: #666; font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; font-weight: 500; }
        .tag.highlight { background: var(--col-purple); color: white; }
        .doc-bio { font-size: 0.9rem; color: #666; line-height: 1.6; }

        .doc-footer { padding: 20px 25px; background: #fdfdfd; border-top: 1px solid #eee; }
        .btn-schedule {
            display: block; width: 100%; border: 2px solid var(--col-purple); color: var(--col-purple);
            padding: 12px; border-radius: 30px; background: white; font-weight: 700; 
            text-align: center; transition: 0.3s; cursor: pointer;
        }
        .btn-schedule:hover { background: var(--col-purple); color: white; }
    
        .partner-section { padding: 2%; text-align: center; background: #4A144B; color: #fff; }
        .partner-section h4 { font-size: 1.25rem; display: inline-block; margin-right: 5%; }
        
        .btn-glow { background: white; color: var(--col-purple); padding: 15px 40px; border-radius: 50px; font-weight: 700; text-decoration: none; box-shadow: 0 0 30px rgba(255, 255, 255, 0.3); transition: transform 0.2s; }
        .btn-glow:hover { background-color:transparent; color:#fff; transform: scale(1.05); border:1px solid #fff; }
        
        /* =========================================
           5. CONCIERGE & BRAND ANCHOR
           ========================================= */
        .concierge-section { background: var(--bg-champagne); padding: 80px 0; border-top: 1px solid rgba(212, 175, 55, 0.2); }
        .concierge-box { display: flex; gap: 60px; align-items: center; }
        .concierge-text { flex: 1; }
        .c-icon-lg { font-size: 3rem; color: var(--col-gold); margin-bottom: 20px; }
        .c-title { font-family: 'Playfair Display'; font-size: 2.5rem; color: var(--col-purple); margin-bottom: 15px; line-height: 1.1; }
        .c-p { font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 30px; }
        
        .concierge-form { flex: 1; background: white; padding: 40px; border-radius: 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); }
        .c-input { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 12px; margin-bottom: 15px; outline: none; background: #fafafa; font-family: 'Poppins'; transition: 0.3s; }
        .c-input:focus { border-color: var(--col-purple); background: white; }
        .c-btn { width: 100%; background: var(--col-purple); color: white; border: none; padding: 16px; border-radius: 12px; font-weight: 700; cursor: pointer; transition: 0.3s; }
        .c-btn:hover { background: var(--col-pink); transform: translateY(-2px); }

        .brand-anchor { background: var(--col-purple); color: white; padding: 80px 0; position: relative; overflow: hidden; }
        .anchor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; position: relative; z-index: 2; }
        .anchor-item i { font-size: 2.5rem; color: var(--col-gold); margin-bottom: 20px; background: rgba(255,255,255,0.1); width: 80px; height: 80px; line-height: 80px; border-radius: 50%; }
        .anchor-item h3 { font-family: 'Playfair Display'; margin-bottom: 10px; font-size: 1.3rem; }
        .anchor-item p { font-size: 0.9rem; opacity: 0.8; line-height: 1.6; }

        /* FOOTER */
        footer { background: #1a051d; color: rgba(255,255,255,0.6); padding: 30px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; margin-top:-50px; }

        /* =========================================
           6. BOOKING MODAL
           ========================================= */
        .modal-overlay { 
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
            background: rgba(0,0,0,0.6); z-index: 1000; display: none; 
            justify-content: center; align-items: center; backdrop-filter: blur(5px); 
        }
        .modal-box { 
            background: white; width: 500px; padding: 40px; border-radius: 25px; 
            position: relative; animation: popUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
        }
        @keyframes popUp { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        
        .close-modal { position: absolute; top: 20px; right: 20px; cursor: pointer; font-size: 1.5rem; color: #999; transition: 0.2s; }
        .close-modal:hover { color: var(--col-pink); }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-section { padding: 60px 0 80px 0; }
            .hero-title { font-size: 2.2rem; padding: 0 20px; }
            .concierge-box { flex-direction: column; text-align: center; gap: 30px; }
            .anchor-grid, .doc-grid { grid-template-columns: 1fr; }
            .feelings-grid { grid-template-columns: 1fr 1fr; padding: 0 15px; }
            .modal-box { width: 90%; margin: 20px; padding: 30px; }
            .sec-tit { font-size:1.2rem; line-height:1.2; }
            .partner-section { height:200px; }
            .partner-section h4 { font-size: 1.25rem; padding: 10px; line-height: 1.25; margin-bottom:25px; }
        }