 

    /* ── CLEAN HERO (From general-surgery-1) ── */
    .clean-hero {
      position: relative;
      min-height: 65vh;
      background: url('https://images.unsplash.com/photo-1551601651-2a8555f1a136?w=1600&q=80') center/cover no-repeat fixed;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .clean-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(253, 252, 252, 1) 0%, rgba(253, 252, 252, 0.85) 45%, rgba(253, 252, 252, 0) 100%);
      z-index: 1;
    }

    .ch-inner {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: 0 32px;
      animation: fadeRight 1s ease-out;
    }

    .ch-content {
      max-width: 650px;
    }

    .ch-tag {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--teal);
      margin-bottom: 16px;
      display: inline-block;
      background: color-mix(in srgb, var(--teal) 10%, transparent);
      padding: 6px 16px;
      border-radius: 30px;
    }

    .ch-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5vw, 4.5rem);
      color: var(--teal-dark);
      margin-bottom: 20px;
      line-height: 1.1;
      font-weight: 700;
    }

    .ch-content p {
      font-size: 1.15rem;
      color: var(--gray);
      margin-bottom: 30px;
      line-height: 1.7;
    }

    /* ── PAGE LAYOUT ── */
    .page-layout {
      max-width: 1280px;
      margin: 0 auto;
      padding: 80px 32px 100px;
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 60px;
      align-items: start;
    }

    /* Sidebar Nav */
    .sidebar-container {
      position: sticky;
      top: 120px;
    }

    .nav-widget {
      background: #fff;
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      border: 1px solid var(--light-gray);
    }

    .nw-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--dark);
      margin-bottom: 20px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nw-title::before {
      content: '';
      display: block;
      width: 6px;
      height: 24px;
      background: var(--teal);
      border-radius: 4px;
    }

    .filter-links {
      list-style: none;
    }

    .filter-links li {
      margin-bottom: 12px;
    }

    .filter-links li:last-child {
      margin-bottom: 0;
    }

    .filter-btn {
      width: 100%;
      text-align: left;
      border: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      background: var(--light-gray);
      color: var(--gray);
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
    }

    .filter-btn::after {
      content: '→';
      opacity: 0;
      transition: all 0.3s;
      transform: translateX(-10px);
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--teal);
      color: #fff;
      box-shadow: 0 8px 20px color-mix(in srgb, var(--teal) 30%, transparent);
      padding-left: 24px;
    }

    .filter-btn:hover::after,
    .filter-btn.active::after {
      opacity: 1;
      transform: translateX(0);
    }

    /* Main Content - Horizontal Cards */
    .docs-list-header {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      color: var(--dark);
      margin-bottom: 10px;
      font-weight: 700;
    }

    .docs-list-desc {
      font-size: 1.1rem;
      color: var(--gray);
      margin-bottom: 40px;
    }

    .doc-row {
      position: relative;
      display: flex;
      gap: 30px;
      background: #fff;
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0, 0, 0, 0.03);
      margin-bottom: 30px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .doc-row:hover {
      box-shadow: 0 20px 50px color-mix(in srgb, var(--teal) 15%, transparent);
      transform: translateY(-8px);
      border-color: transparent;
    }

    .doc-avatar {
      width: 240px;
      height: 280px;
      flex-shrink: 0;
      border-radius: 16px;
      overflow: hidden;
      background: var(--light-gray);
      position: relative;
    }

    .doc-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      object-position: top;
    }

    .doc-row:hover .doc-avatar img {
      transform: scale(1.05);
    }

    .doc-details {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .dd-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
      flex-wrap: wrap;
      gap: 10px;
      padding-right: 50px;
    }

    .dd-header h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      color: var(--teal-dark);
      font-weight: 700;
    }

    .doc-badge {
      background: color-mix(in srgb, var(--gold) 15%, transparent);
      color: var(--gold);
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .dd-degree {
      font-size: 1.05rem;
      color: var(--teal);
      font-weight: 600;
      margin-bottom: 12px;
    }

    .dd-desc {
      font-size: 1rem;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .dd-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
      padding-top: 14px;
      border-top: 1px solid var(--light-gray);
      flex-wrap: wrap;
      gap: 16px;
    }

    .dd-schedule {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.95rem;
      color: var(--gray);
      font-weight: 500;
    }

    .dd-schedule .icon {
      font-size: 1.2rem;
      color: var(--teal-light);
    }

    .btn-outline-teal {
      border: 2px solid var(--teal);
      color: var(--teal);
      padding: 10px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-outline-teal:hover {
      background: var(--teal);
      color: #fff;
      box-shadow: 0 8px 24px color-mix(in srgb, var(--teal) 30%, transparent);
    }

    /* ── CTA ── */
    .cta-section {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 10%, transparent) 0%, transparent 60%);
    }

    .cta-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 28px;
    }

    .cta-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .cta-text p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1rem;
    }

    .cta-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-ghost {
      background: transparent;
      border: 2px solid var(--gold);
      color: var(--gold-light);
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 0 20px color-mix(in srgb, var(--gold) 15%, transparent);
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-ghost:hover {
      background: var(--gold);
      color: var(--dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px color-mix(in srgb, var(--gold) 40%, transparent);
      border-color: var(--gold);
    }

    .btn-white {
      background: #fff;
      color: var(--teal-dark);
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.92rem;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    }

    /* ── FOOTER ── */
    footer {
      background: #060f0e;
      color: rgba(255, 255, 255, 0.6);
      padding: 0;
    }

    .footer-top {
      max-width: 1280px;
      margin: 0 auto;
      padding: 72px 32px 48px;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 48px;
    }

    .footer-brand .footer-logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: #fff;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .footer-brand .footer-logo-sub {
      font-size: 0.7rem;
      color: var(--teal-light);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .footer-brand p {
      font-size: 0.82rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 24px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 0.85rem;
      transition: all 0.25s;
    }

    .footer-social a:hover {
      background: var(--teal);
      border-color: var(--teal);
      color: #fff;
      transform: translateY(-3px);
    }

    .footer-col h4,
    .footer-contact-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: #fff;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }

    .footer-col h4::after,
    .footer-contact-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 32px;
      height: 2px;
      background: var(--teal);
      border-radius: 2px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 0.83rem;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .footer-col ul li a::before {
      content: '›';
      color: var(--teal-light);
      font-size: 1rem;
    }

    .footer-col ul li a:hover {
      color: var(--teal-light);
      padding-left: 4px;
    }

    .footer-contact-item {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
      align-items: flex-start;
    }

    .fc-icon {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      background: color-mix(in srgb, var(--teal) 25%, transparent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
    }

    .footer-contact-item p,
    .footer-contact-item a {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
      text-decoration: none;
    }

    .footer-contact-item a:hover {
      color: var(--teal-light);
    }

    .opd-badge {
      display: inline-block;
      background: color-mix(in srgb, var(--teal) 30%, transparent);
      border: 1px solid rgba(10, 168, 152, 0.3);
      color: var(--teal-light);
      font-size: 0.75rem;
      padding: 5px 14px;
      border-radius: 50px;
      margin-top: 6px;
      font-weight: 600;
    }

    .footer-bottom {
      max-width: 1280px;
      margin: 0 auto;
      padding: 20px 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .footer-bottom p {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.35);
    }

    .footer-bottom span {
      color: var(--teal-light);
    }

    .footer-bottom a {
      text-decoration: none;
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    .footer-bottom-links a {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.35);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
      color: var(--teal-light);
    }

    .whatsapp-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
      z-index: 999;
      transition: transform 0.3s;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
    }

    @keyframes fadeRight {
      from {
        opacity: 0;
        transform: translateX(-40px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      .page-layout {
        grid-template-columns: 250px 1fr;
        gap: 40px;
      }

      .doc-row {
        flex-direction: column;
        gap: 20px;
      }

      .doc-avatar {
        width: 100%;
        height: 300px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:768px) {

      .btn-appt {
        margin-left: 0;
      }

      .ch-content h1 {
        font-size: 2.5rem;
      }

      .page-layout {
        grid-template-columns: 1fr;
        padding-top: 40px;
      }

      .sidebar-container {
        position: static;
        margin-bottom: 20px;
      }

      .filter-links {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
      }

      .filter-links li {
        margin-bottom: 0;
        flex-shrink: 0;
      }

      .filter-btn {
        white-space: nowrap;
        padding: 10px 16px;
      }

      .filter-btn::after {
        display: none;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .cta-inner {
        text-align: center;
        justify-content: center;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    /* Share Icon Styles */
    .card-share-wrap {
      position: absolute;
      top: 24px;
      right: 24px;
      z-index: 10;
    }

    .share-icon-btn {
      background: var(--light-gray);
      border: none;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--teal-dark);
      transition: all 0.3s;
    }

    .share-icon-btn:hover,
    .card-share-wrap:hover .share-icon-btn,
    .card-share-wrap:focus-within .share-icon-btn {
      background: var(--teal);
      color: #fff;
    }

    .social-icons-dropdown {
      position: absolute;
      top: 40px;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
    }

    .card-share-wrap:hover .social-icons-dropdown,
    .card-share-wrap:focus-within .social-icons-dropdown {
      opacity: 1;
      visibility: visible;
    }

    .social-icons-dropdown a {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--teal);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transform: translateY(-10px) scale(0.8);
      opacity: 0;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transition-delay: calc(0.05s * var(--i));
      text-decoration: none;
    }

    .card-share-wrap:hover .social-icons-dropdown a,
    .card-share-wrap:focus-within .social-icons-dropdown a {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .social-icons-dropdown a:hover {
      background: var(--teal);
      color: #fff;
    }

    /* ── PREMIUM PROFILE PAGE STYLES ── */
    body { background: #fdfcfc; }
    .hero-profile {
      position: relative;
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
      padding: 100px 0 160px;
      color: #fff;
      overflow: hidden;
    }
    .hero-profile::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%; width: 200%; height: 200%;
      background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 50%);
      animation: rotateBg 30s linear infinite;
    }
    @keyframes rotateBg { 100% { transform: rotate(360deg); } }
    
    .profile-hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 2;
    }
    
    .profile-header-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .profile-badge-premium {
      background: rgba(197, 160, 89, 0.2);
      color: var(--gold-light);
      border: 1px solid rgba(197, 160, 89, 0.4);
      padding: 8px 24px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
    }
    .profile-title {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 16px;
      line-height: 1.1;
      text-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .profile-subtitle {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.85);
      font-weight: 400;
      max-width: 600px;
      line-height: 1.6;
    }

    /* Floating Content Container */
    .profile-main-container {
      max-width: 1280px;
      margin: -100px auto 100px;
      padding: 0 32px;
      position: relative;
      z-index: 10;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 40px;
      align-items: start;
    }

    /* Left Side: Photo & Details */
    .profile-left {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .glass-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-radius: 30px;
      padding: 40px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.06);
      border: 1px solid rgba(255,255,255,0.8);
    }

    /* Quick Stats */
    .stats-row {
      display: flex;
      gap: 20px;
      background: #fff;
      padding: 24px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    }
    .stat-item {
      flex: 1;
      text-align: center;
      border-right: 1px solid var(--light-gray);
    }
    .stat-item:last-child { border-right: none; }
    .stat-val {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--teal);
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 0.9rem;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--dark);
      margin-bottom: 24px;
      position: relative;
      display: inline-block;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -8px; left: 0;
      width: 40px; height: 3px;
      background: var(--gold);
      border-radius: 3px;
    }

    .about-text {
      font-size: 1.1rem;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    

    /* Modern Timeline */
    .timeline {
      position: relative;
      padding-left: 30px;
      margin-top: 30px;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 0; top: 10px; bottom: 0;
      width: 2px;
      background: var(--light-gray);
    }
    .timeline-item {
      position: relative;
      margin-bottom: 30px;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -35px; top: 5px;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--teal);
      border: 3px solid #fff;
      box-shadow: 0 0 0 2px var(--teal-light);
      transition: all 0.3s;
    }
    .timeline-item:hover::before {
      background: var(--gold);
      box-shadow: 0 0 0 3px var(--gold-light);
      transform: scale(1.2);
    }
    .tl-year {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .tl-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--dark);
      font-weight: 700;
      margin-bottom: 8px;
    }
    .tl-desc {
      font-size: 1rem;
      color: var(--gray);
      line-height: 1.6;
    }

    /* Expertise Pills */
    .expertise-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }
    .expertise-pill {
      background: #fff;
      border: 1px solid var(--light-gray);
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--teal-dark);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    .expertise-pill:hover {
      background: var(--teal);
      color: #fff;
      border-color: var(--teal);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px color-mix(in srgb, var(--teal) 20%, transparent);
    }
    .expertise-pill svg {
      width: 16px; height: 16px;
      color: var(--gold);
    }
    .expertise-pill:hover svg {
      color: #fff;
    }

    /* Right Sidebar: Sticky Card */
    .profile-sidebar-wrapper {
      position: sticky;
      top: 100px;
    }
    .photo-card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      border: 5px solid #fff;
      margin-bottom: 30px;
      transform: translateY(-30px);
    }
    .photo-card img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      aspect-ratio: 4/5;
      transition: transform 0.5s ease;
    }
    .photo-card:hover img {
      transform: scale(1.05);
    }
    
    .contact-card {
      background: #fff;
      border-radius: 24px;
      padding: 32px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.04);
      transform: translateY(-20px);
    }
    .contact-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--teal-dark);
      margin-bottom: 24px;
      font-weight: 700;
      text-align: center;
    }
    .contact-list {
      list-style: none;
      margin-bottom: 30px;
    }
    .contact-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
      font-size: 1rem;
      color: var(--gray);
    }
    .contact-icon {
      width: 40px; height: 40px;
      background: var(--light-gray);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--teal);
      flex-shrink: 0;
    }
    .contact-list a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }
    .contact-list a:hover { color: var(--teal); }

    .social-share-wrap {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 30px;
      padding-top: 24px;
      border-top: 1px solid var(--light-gray);
    }
    .social-share-wrap a {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--light-gray);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .social-share-wrap a:hover {
      background: var(--teal);
      color: #fff;
      border-color: var(--teal);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px color-mix(in srgb, var(--teal) 20%, transparent);
    }

    .btn-booking {
      display: block;
      width: 100%;
      background: var(--teal);
      color: #fff !important;
      text-align: center;
      padding: 16px 20px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 10px 20px color-mix(in srgb, var(--teal) 20%, transparent);
    }
    .btn-booking:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 15px 30px color-mix(in srgb, var(--teal-dark) 25%, transparent);
    }

    @media(max-width: 992px) {
      .profile-main-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: -60px;
      }
      .profile-sidebar-wrapper {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
        order: -1;
      }
      .photo-card { transform: translateY(-40px); margin-bottom: 0; }
      .contact-card { transform: translateY(-20px); }
      .profile-title { font-size: 3rem; }
      .hero-profile { padding: 80px 0 100px; }
      .stats-row { flex-wrap: wrap; }
      .stat-item { flex: 1 1 100%; border-right: none; border-bottom: 1px solid var(--light-gray); padding-bottom: 16px; margin-bottom: 16px; }
      .stat-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
    }
    @media(max-width: 768px) {
      .profile-title { font-size: 2.2rem; }
    }

