/*Main*/ .clinic-subnav { top: 0; z-index: 1020; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; } .clinic-subnav::-webkit-scrollbar { display: none; } .clinic-subnav-link { color: var(--color-dark-text); font-weight: 500; font-size: 0.9rem; padding: 0.5rem 0; position: relative; transition: color 0.3s ease; } .clinic-subnav-link:hover, .clinic-subnav-link.active { color: var(--color-gold); } .clinic-subnav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--color-gold); transition: width 0.3s ease; } .clinic-subnav-link:hover::after, .clinic-subnav-link.active::after { width: 100%; } /* Gallery grid */ /* Gallery: 1 big left + 2grid right */.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 290px 290px; gap: 6px; border-radius: 12px; overflow: hidden;}.gallery-grid .g-featured { grid-column: 1; grid-row: 1 / 3;}.gallery-item { overflow: hidden; position: relative; cursor: pointer; height: 100%; background: #111;}.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;}.gallery-item:hover img { transform: scale(1.04);}.gallery-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.3s ease; display: flex; align-items: center; justify-content: center;}.gallery-item:hover .gallery-item-overlay { background: rgba(177,139,50,0.1);}@media (max-width: 767px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 150px 150px; } .gallery-grid .g-featured { grid-column: 1 / 3; grid-row: 1; }}/* Video gallery */ .video-gallery-item { position: relative; overflow: hidden; cursor: pointer; background: #000; } .video-gallery-item video { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; transition: opacity 0.3s; } .video-gallery-item:hover video { opacity: 1; } .video-play-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; pointer-events: none; } .video-play-btn { width: 64px; height: 64px; background: rgba(177,139,50,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: transform 0.3s; } .video-gallery-item:hover .video-play-btn { transform: scale(1.1); } /* Certificate overlay */ .cert-overlay { position: absolute; bottom: 20px; right: 20px; z-index: 3; background: rgba(255,255,255,0.97); border: 1px solid rgba(177,139,50,0.35); padding: 14px; box-shadow: 0 12px 32px rgba(0,0,0,0.2); backdrop-filter: blur(4px); max-width: 220px; } .cert-overlay img { width: 100%; height: auto; display: block; } .cert-overlay-label { font-size: 0.65rem; text-align: center; color: #555; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; font-weight: 600; } /* Process scroll */ .process-scroll-container { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 16px; scrollbar-width: none; } .process-scroll-container::-webkit-scrollbar { display: none; } .process-step-wrapper { flex: 0 0 320px; } .step-card-premium { background: #fff; border: 1px solid rgba(0,0,0,0.06); height: 100%; } .step-img-container { position: relative; overflow: hidden; height: 200px; } .step-img-container img { width: 100%; height: 100%; object-fit: cover; } .step-badge { position: absolute; top: 16px; left: 16px; background: var(--color-gold); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 6px 12px; text-transform: uppercase; letter-spacing: 1px; } .step-badge span { font-weight: 300; opacity: 0.8; margin-left: 4px; } .step-content { padding: 24px; } /* Material brand items */ .material-column { border: 1px solid rgba(0,0,0,0.06); padding: 32px 24px; height: 100%; } .brand-logo-item { font-size: 1.1rem; font-weight: 600; letter-spacing: 1px; padding: 12px 24px; border: 1px solid rgba(0,0,0,0.08); } .feature-item-minimal { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 16px; border: 1px solid rgba(255,255,255,0.08); text-align: center; transition: border-color 0.3s; } .feature-item-minimal:hover { border-color: rgba(177,139,50,0.4); } /* Custom Premium Tabs for Procedures */ .premium-tabs .nav-link { color: var(--color-dark-text); font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; border: 1px solid rgba(0,0,0,0.1); border-radius: 0; padding: 1rem 2rem; background: #fff; transition: all 0.3s ease; } .premium-tabs .nav-link:hover { border-color: var(--color-gold); color: var(--color-gold); } .premium-tabs .nav-link.active { background-color: var(--color-gold); border-color: var(--color-gold); color: #fff; box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2); } /* Drop Cap for large text blocks */ .drop-cap::first-letter { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; color: var(--color-gold); float: left; line-height: 1; padding-right: 0.5rem; margin-top: -0.2rem; } /* Image Offset Border Effect */ .img-offset-wrap { position: relative; z-index: 1; } .img-offset-wrap::before { content: ''; position: absolute; top: 20px; left: -20px; width: 100%; height: 100%; border: 2px solid var(--color-gold); border-radius: 1rem; z-index: -1; opacity: 0.3; transition: all 0.4s ease; } .tab-pane.active .img-offset-wrap::before { top: 15px; left: -15px; } /* Custom Number Styling for Grid */.grid-number { font-size: 4.5rem; line-height: 0.8; margin-top: -0.5rem; background: linear-gradient(135deg, var(--color-gold) 0%, #d4af37 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 2px 2px 10px rgba(177, 139, 50, 0.2);}
