/* =========================================
       ROOT & TOKENS
    ========================================= */
    :root {
      --gold-deep:  #8B6914;
      --gold-dark:  #A8812A;
      --gold:       #C9A363;
      --gold-mid:   #D4AA6A;
      --gold-light: #E8C98A;
      --gold-soft:  #F5E6C8;
      --gold-pale:  #FBF3E2;
      --gold-glow:  #FFD98A;

      --dark:       #1A1208;
      --dark-mid:   #2D200C;
      --dark-warm:  #3D2C12;
      --brown:      #5C3D1A;
      --brown-mid:  #7A5228;

      --ivory:      #FFFDF6;
      --cream:      #FBF6EC;
      --cream-mid:  #F5EDD8;
      --beige:      #EDE0C4;
      --white:      #FFFFFF;

      --text-dark:  #1A1208;
      --text-mid:   #4A3418;
      --text-muted: #7A6040;
      --text-light: #A0886A;

      --border:       #E0CCA0;
      --border-light: #EDE0C4;

      --shadow-sm: 0 2px 16px rgba(180,130,30,.10);
      --shadow-md: 0 8px 40px rgba(180,130,30,.16);
      --shadow-lg: 0 24px 64px rgba(180,130,30,.22);

      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 36px;

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'DM Sans', sans-serif;
      --font-accent:  'Cormorant Garamond', Georgia, serif;
      --transition:   all 0.38s cubic-bezier(.4,0,.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: var(--text-dark); background: var(--ivory); overflow-x: hidden; line-height: 1.7; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    ul { list-style: none; padding: 0; margin: 0; }

    /* WhatsApp */
    .whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 6px 24px rgba(37,211,102,.45); animation: waPulse 2.5s infinite; }
    .whatsapp-float:hover { transform: scale(1.1); color: white; }
    @keyframes waPulse { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); } 50% { box-shadow: 0 6px 36px rgba(37,211,102,.75); } }

    #scroll-top { position: fixed; bottom: 92px; right: 24px; width: 44px; height: 44px; background: var(--dark-mid); color: var(--gold-light); border: 1px solid var(--gold-dark); border-radius: 50%; font-size: 1rem; cursor: pointer; z-index: 900; opacity: 0; visibility: hidden; transition: var(--transition); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
    #scroll-top.show { opacity: 1; visibility: visible; }
    #scroll-top:hover { background: var(--gold-dark); color: white; transform: translateY(-3px); }

    /* =========================================
       NAVBAR
    ========================================= */
    .navbar-main { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-light); box-shadow: 0 2px 20px rgba(180,130,30,.08); }
    .navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .brand-logo { display: flex; align-items: center; gap: 10px; }
    .brand-icon { width: 72px; height: 72px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
    .brand-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 13px; }
    .brand-text .clinic-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--dark-warm); }
    .brand-text .clinic-sub { font-size: .68rem; color: var(--gold-dark); font-weight: 500; letter-spacing: .8px; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-links a { font-size: .95rem; font-weight: 500; color: var(--text-mid); padding: 8px 14px; border-radius: 8px; transition: var(--transition); }
    .nav-links a:hover, .nav-links a.active { color: var(--gold-dark); background: var(--gold-pale); }
    .nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important; color: white !important; padding: 10px 22px !important; border-radius: 50px !important; font-weight: 600 !important; box-shadow: 0 4px 16px rgba(169,129,42,.35); }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 7px 22px rgba(169,129,42,.5); color: white !important; }
    .nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--dark-warm); cursor: pointer; padding: 8px; }
    .mobile-nav { display: none; position: fixed; inset: 0; background: linear-gradient(160deg, var(--dark) 0%, var(--dark-warm) 100%); z-index: 999; flex-direction: column; padding: 80px 40px 40px; transform: translateX(100%); transition: transform .4s ease; }
    .mobile-nav.open { transform: translateX(0); display: flex; }
    .mobile-nav a { font-family: var(--font-display); font-size: 1.6rem; color: rgba(255,240,200,.85); padding: 16px 0; border-bottom: 1px solid rgba(212,170,106,.18); transition: var(--transition); }
    .mobile-nav a:hover { color: var(--gold-glow); padding-left: 12px; }
    .mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--gold-light); font-size: 1.5rem; cursor: pointer; }

    /* =========================================
       PAGE HERO
    ========================================= */
    .page-hero {
      position: relative; overflow: hidden;
      background: linear-gradient(105deg, rgba(20,12,2,.90) 0%, rgba(45,32,12,.82) 50%, rgba(140,100,30,.60) 100%),
        url('images/banner/1.jpg') center/cover no-repeat;
      padding: 90px 0 70px;
    }
    .page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(212,170,106,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212,170,106,.04) 1px, transparent 1px); background-size: 60px 60px; }
    .page-hero::after { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,170,106,.15), transparent 70%); top: -150px; right: -80px; border-radius: 50%; pointer-events: none; }
    .page-hero-content { position: relative; z-index: 2; }
    .page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.2rem); color: white; font-weight: 700; margin-bottom: 10px; }
    .page-hero h1 em { font-style: normal; color: var(--gold-glow); }
    .page-hero p { color: rgba(255,240,200,.65); font-size: 1rem; max-width: 540px; line-height: 1.8; }
    .breadcrumb { background: none; padding: 0; margin: 0 0 18px; }
    .breadcrumb-item a { color: var(--gold-light); }
    .breadcrumb-item.active { color: rgba(255,240,200,.5); }
    .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,240,200,.3); }

    /* =========================================
       SERVICES NAV TABS
    ========================================= */
    .services-nav {
      background: var(--ivory);
      border-bottom: 2px solid var(--border-light);
      position: sticky; top: 88px; z-index: 100;
      box-shadow: 0 4px 20px rgba(180,130,30,.08);
    }
    .services-nav-inner {
      max-width: 1280px; margin: 0 auto; padding: 0 24px;
      display: flex; gap: 0; overflow-x: auto;
      scrollbar-width: none; -ms-overflow-style: none;
    }
    .services-nav-inner::-webkit-scrollbar { display: none; }
    .svc-nav-btn {
      display: flex; align-items: center; gap: 8px;
      padding: 18px 28px; font-size: .88rem; font-weight: 600;
      color: var(--text-muted); background: none; border: none;
      border-bottom: 3px solid transparent; cursor: pointer;
      white-space: nowrap; transition: var(--transition);
      margin-bottom: -2px;
    }
    .svc-nav-btn i { font-size: 1rem; }
    .svc-nav-btn:hover { color: var(--gold-dark); border-bottom-color: var(--gold-light); }
    .svc-nav-btn.active { color: var(--gold-dark); border-bottom-color: var(--gold-dark); background: var(--gold-pale); }

    /* =========================================
       SECTION UTILITIES
    ========================================= */
    .svc-section { padding: 80px 0; }
    .svc-section:nth-child(odd)  { background: var(--ivory); }
    .svc-section:nth-child(even) { background: var(--cream); }

    .section-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-pale); color: var(--gold-dark); padding: 6px 16px; border-radius: 50px; font-size: .76rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; border: 1px solid var(--border); }
    .section-title { font-family: var(--font-display); font-size: clamp(1.85rem,3.5vw,2.6rem); font-weight: 700; color: var(--dark-warm); line-height: 1.25; margin-bottom: 12px; }
    .section-title span { color: var(--gold-dark); }
    .section-divider { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-glow)); border-radius: 3px; margin: 12px 0 20px; }
    .section-sub { color: var(--text-muted); font-size: .97rem; max-width: 560px; line-height: 1.82; }

    /* =========================================
       CATEGORY HEADER BAR
    ========================================= */
    .cat-header {
      display: flex; align-items: flex-start; gap: 28px;
      margin-bottom: 48px;
    }
    .cat-icon-wrap {
      width: 76px; height: 76px; border-radius: 22px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; box-shadow: var(--shadow-sm);
    }
    .cat-icon-wrap.gold { background: linear-gradient(135deg, var(--gold-pale), var(--gold-soft)); color: var(--gold-dark); border: 1.5px solid var(--border); }
    .cat-icon-wrap.dark { background: linear-gradient(135deg, var(--dark), var(--dark-warm)); color: var(--gold-light); }
    .cat-icon-wrap.cream { background: linear-gradient(135deg, var(--cream-mid), var(--beige)); color: var(--brown); }

    /* =========================================
       SERVICE ITEM CARDS
    ========================================= */
    .svc-item-card {
      background: var(--ivory); border-radius: var(--radius-md);
      padding: 22px 20px; border: 1.5px solid var(--border-light);
      transition: var(--transition); height: 100%;
      display: flex; align-items: flex-start; gap: 14px;
      box-shadow: var(--shadow-sm);
    }
    .svc-item-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .svc-item-icon {
      width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
    }
    .svc-item-icon.g1 { background: var(--gold-pale); color: var(--gold-dark); }
    .svc-item-icon.g2 { background: var(--cream-mid); color: var(--brown); }
    .svc-item-icon.g3 { background: linear-gradient(135deg, var(--dark), var(--dark-warm)); color: var(--gold-light); }
    .svc-item-icon.g4 { background: linear-gradient(135deg, var(--gold-soft), var(--gold-pale)); color: var(--gold-deep); }
    .svc-item-info h6 { font-family: var(--font-display); font-size: .97rem; color: var(--dark-warm); margin-bottom: 4px; font-weight: 600; }
    .svc-item-info p { font-size: .81rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

    /* =========================================
       FEATURED SERVICE — LARGE HIGHLIGHT CARD
    ========================================= */
    .svc-highlight-card {
      border-radius: var(--radius-xl); overflow: hidden;
      box-shadow: var(--shadow-lg); position: relative;
      height: 380px; cursor: pointer;
    }
    .svc-highlight-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
    .svc-highlight-card:hover img { transform: scale(1.05); }
    .svc-highlight-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,8,0,.88) 0%, rgba(15,8,0,.30) 60%, transparent 100%); }
    .svc-highlight-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
    .svc-highlight-cat { display: inline-block; background: rgba(201,163,99,.9); color: white; padding: 3px 12px; border-radius: 50px; font-size: .68rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 8px; }
    .svc-highlight-body h3 { font-family: var(--font-display); color: white; font-size: 1.5rem; margin-bottom: 6px; }
    .svc-highlight-body p { color: rgba(255,240,200,.72); font-size: .84rem; line-height: 1.6; margin: 0; }

    /* =========================================
       STAT STRIP
    ========================================= */
    .stat-strip { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-warm) 100%); padding: 56px 0; position: relative; overflow: hidden; }
    .stat-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%, rgba(212,170,106,.12) 0%, transparent 60%); }
    .stat-strip .container { position: relative; z-index: 2; }
    .stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(212,170,106,.2); }
    .stat-item:last-child { border-right: none; }
    .stat-item .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold-glow); line-height: 1; }
    .stat-item .lbl { font-size: .78rem; color: rgba(255,240,200,.5); margin-top: 6px; letter-spacing: .3px; }

    /* =========================================
       NUTRITION PLAN CARDS
    ========================================= */
    .plan-card {
      background: var(--ivory); border-radius: var(--radius-lg); padding: 28px 24px;
      border: 1.5px solid var(--border-light); transition: var(--transition); height: 100%;
      text-align: center; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
    }
    .plan-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-glow)); }
    .plan-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .plan-icon { width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; background: var(--gold-pale); color: var(--gold-dark); }
    .plan-card h5 { font-family: var(--font-display); font-size: .98rem; color: var(--dark-warm); margin-bottom: 8px; font-weight: 600; }
    .plan-card p { font-size: .81rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

    /* =========================================
       SPMU ARTISTRY GRID
    ========================================= */
    .spmu-card {
      border-radius: var(--radius-lg); overflow: hidden; position: relative;
      height: 240px; box-shadow: var(--shadow-md); transition: var(--transition);
      border: 1px solid rgba(212,170,106,.2);
    }
    .spmu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .spmu-card-bg {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
    }
    .spmu-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,12,2,.85) 0%, rgba(20,12,2,.25) 70%, transparent 100%); }
    .spmu-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
    .spmu-card-body h5 { font-family: var(--font-display); font-size: 1.05rem; color: white; margin-bottom: 4px; }
    .spmu-card-body p { font-size: .78rem; color: rgba(255,240,200,.7); margin: 0; }
    .spmu-number { position: absolute; top: 14px; right: 14px; font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: rgba(255,255,255,.07); line-height: 1; }

    /* Gradient backgrounds for SPMU cards */
    .spmu-bg-1 { background: linear-gradient(135deg, #3D2C12, #7A5228); }
    .spmu-bg-2 { background: linear-gradient(135deg, #1A1208, #5C3D1A); }
    .spmu-bg-3 { background: linear-gradient(135deg, #C9A363, #A8812A); }
    .spmu-bg-4 { background: linear-gradient(135deg, #2D200C, #A8812A); }
    .spmu-bg-5 { background: linear-gradient(135deg, #5C3D1A, #D4AA6A); }
    .spmu-bg-6 { background: linear-gradient(135deg, #3D2C12, #C9A363); }
    .spmu-bg-7 { background: linear-gradient(135deg, #1A1208, #7A5228); }
    .spmu-bg-8 { background: linear-gradient(135deg, #8B6914, #FFD98A); }
    .spmu-bg-9 { background: linear-gradient(135deg, #2D200C, #E8C98A); }

    /* =========================================
       CTA BLOCK
    ========================================= */
    .cta-block {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark-warm) 100%);
      border-radius: var(--radius-xl); padding: 56px 48px;
      position: relative; overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .cta-block::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,170,106,.18), transparent 70%); top: -150px; right: -80px; border-radius: 50%; }
    .cta-block::after  { content: ''; position: absolute; width: 250px; height: 250px; background: radial-gradient(circle, rgba(212,170,106,.10), transparent 70%); bottom: -80px; left: 40px; border-radius: 50%; }
    .cta-block-inner { position: relative; z-index: 2; }
    .cta-block h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem); color: white; margin-bottom: 12px; }
    .cta-block h2 em { font-style: normal; color: var(--gold-glow); }
    .cta-block p { color: rgba(255,240,200,.65); font-size: .97rem; margin-bottom: 32px; max-width: 500px; line-height: 1.8; }

    .btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 18px rgba(169,129,42,.38); transition: var(--transition); border: none; }
    .btn-gold:hover { color: white; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(169,129,42,.55); }
    .btn-outline-gold { background: transparent; color: var(--gold-light); padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: .9rem; border: 2px solid rgba(212,170,106,.5); display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
    .btn-outline-gold:hover { background: rgba(212,170,106,.15); color: white; }

    /* =========================================
       FDA BANNER
    ========================================= */
    .fda-banner { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); padding: 34px 0; }
    .fda-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
    .fda-ico { width: 58px; height: 58px; background: rgba(255,255,255,.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; }
    .fda-txt h4 { font-family: var(--font-display); color: white; font-size: 1.2rem; margin: 0; }
    .fda-txt p { color: rgba(255,255,255,.85); margin: 0; font-size: .87rem; }

    /* =========================================
       FOOTER
    ========================================= */
    footer { background: var(--dark); color: rgba(255,240,200,.65); }
    .footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(212,170,106,.12); }
    .footer-brand .clinic-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light); margin-bottom: 8px; }
    .footer-brand p { font-size: .87rem; line-height: 1.8; color: rgba(255,240,200,.45); margin-bottom: 20px; }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(212,170,106,.10); color: #c7a15f; display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: var(--transition); border: 1px solid rgba(212,170,106,.18); }
    .footer-social a:hover { background: var(--gold-dark); color: white; }
    .footer-col h6 { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-light); margin-bottom: 20px; font-weight: 600; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links li a { font-size: .9rem; color: rgba(255,240,200,.48); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
    .footer-links li a:hover { color: var(--gold-light); padding-left: 6px; }
    .footer-links li a i { font-size: .68rem; color: var(--gold); }
    .footer-ci { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
    .footer-ci i { color: var(--gold); margin-top: 3px; font-size: .9rem; flex-shrink: 0; }
    .footer-ci span { font-size: .9rem; color: #c7a15f; line-height: 1.6; }
    .footer-hours table td { padding: 4px 0; font-size: .9rem; color: #c7a15f; }
    .footer-hours table td:first-child { padding-right: 16px; font-weight: 500; color: rgba(255,240,200,.82); }
    .footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; border-top: 1px solid rgba(212,170,106,.10); }
    .footer-bottom p { font-size: .82rem; color: rgba(255,240,200,.28); margin: 0; }

    /* =========================================
       RESPONSIVE
    ========================================= */
    @media (max-width: 991px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex !important; }
      .services-nav { top: 88px; }
      .cat-header { flex-direction: column; gap: 16px; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(212,170,106,.15); padding: 18px 0; }
      .stat-item:last-child { border-bottom: none; }
      .cta-block { padding: 40px 28px; }
    }
    @media (max-width: 767px) {
      .page-hero { padding: 70px 0 50px; }
      .svc-section { padding: 56px 0; }
      .svc-nav-btn { padding: 14px 18px; font-size: .82rem; }
      .svc-highlight-card { height: 280px; }
      .spmu-card { height: 200px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .fda-inner { flex-direction: column; gap: 14px; }
      .cta-block { padding: 32px 20px; }
       .navbar-inner {
     padding: 0 12px !important;
 }
     .brand-text .clinic-name {
        font-size: 0.99rem;
    }
    .brand-logo {
    gap: 0px !important;
}
    }
    @media (max-width: 400px) {
      .brand-icon { width: 55px; height: 55px; }
    }


    /* =========================================
   APPOINTMENT SECTION
========================================= */
.appointment{
  background:
    linear-gradient(rgba(255,253,246,.96), rgba(255,253,246,.96)),
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.appt-info{
  background: linear-gradient(145deg,#3a2a10 0%, #5a4217 100%);
  border-radius: 30px;
  padding: 50px 38px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.appt-info::before{
  content:'';
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  top:-80px;
  right:-80px;
}

.appt-info-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:24px;
}

.appt-icon{
  width:52px;
  height:52px;
  min-width:52px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#f1d18c;
  font-size:1.1rem;
}

.appt-info-item .lbl{
  color:#f3d9a2;
  font-weight:700;
  margin-bottom:2px;
  font-size:.9rem;
}

.appt-info-item .val{
  color:rgba(255,255,255,.74);
  font-size:.9rem;
  line-height:1.7;
}

.appt-form-wrap{
  background:#fff;
  border-radius:30px;
  padding:50px;
  box-shadow:0 20px 60px rgba(169,129,42,.15);
  border:1px solid rgba(201,163,99,.2);
  position:relative;
  overflow:hidden;
}

.appt-form-wrap::before{
  content:'';
  position:absolute;
  inset:0;
  background:
  linear-gradient(rgba(201,163,99,.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(201,163,99,.03) 1px, transparent 1px);
  background-size:40px 40px;
  pointer-events:none;
}

.appt-form-wrap .form-label{
  font-size:.86rem;
  font-weight:700;
  color:#5b4215;
  margin-bottom:8px;
}

.appt-form-wrap .form-control,
.appt-form-wrap .form-select{
  border-radius:14px;
  min-height:54px;
  border:1.5px solid #ead8b2;
  padding:12px 18px;
  font-size:.92rem;
  color:#3b2a0e;
  background:#fffdf8;
  transition:all .3s ease;
  box-shadow:none;
}

.appt-form-wrap textarea.form-control{
  min-height:130px;
  resize:none;
  padding-top:16px;
}

.appt-form-wrap .form-control:focus,
.appt-form-wrap .form-select:focus{
  border-color:#c9a363;
  background:#fff;
  box-shadow:0 0 0 4px rgba(201,163,99,.12);
}

.appt-form-wrap .btn-gold{
  min-height:58px;
  border:none;
  border-radius:16px;
  font-size:1rem;
  font-weight:700;
  letter-spacing:.3px;
}

.appt-form-wrap .btn-gold:hover{
  transform:translateY(-2px);
}

@media(max-width:767px){

  .appt-form-wrap{
    padding:32px 22px;
    border-radius:24px;
  }

  .appt-info{
    padding:38px 24px;
    border-radius:24px;
  }

}