/* CSS Variables for Color Scheme */
:root {
  --primary-color: #2c5aa0;
  --secondary-color: #4a90e2;
  --accent-color: #ffffff;
  --light-blue: #e6f3ff;
  --white: #ffffff;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
  --navbar-bg: #ffffff;
  --navbar-shadow: rgba(44, 90, 160, 0.08);
}

a:visited {
    color: #fff !important;
}

/* Modern Navbar Styles - Sticky Header */
.navbar {
  font-family: 'Prompt', sans-serif;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background-color: var(--navbar-bg) !important;
  border-bottom: none;
  box-shadow: 0 2px 20px var(--navbar-shadow);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
}

/* Enhanced sticky navbar on scroll */
.navbar.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 25px rgba(44, 90, 160, 0.12);
}

.navbar.scrolled .navbar-logo {
  height: 40px;
}

/* Subtle gradient border */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  opacity: 0.8;
}

.navbar-logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}



.brand-text {
  font-family: 'Kanit', sans-serif;
  line-height: 1.2;
}

.navbar-nav .nav-link {
  font-family: 'Prompt', sans-serif;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  margin: 0 0.3rem;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
  background-color: rgba(74, 144, 226, 0.08);
  transform: translateY(-1px);
}

.navbar-nav .nav-link:focus {
  color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  color: var(--accent-color);
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.25);
  border-radius: 25px;
  padding: 0.7rem 1.5rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(44, 90, 160, 0.35);
  color: var(--accent-color);
}

.navbar-toggler {
  padding: 0.5rem 0.7rem;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.navbar-toggler:hover {
  background-color: var(--primary-color);
  transform: scale(1.05);
}

.navbar-toggler:hover .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232c5aa0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}

/* Mobile Navigation Enhancements */
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.8rem 0;
  }
  
  .navbar-logo {
    height: 45px;
  }
  
  .brand-text {
    font-size: 0.9rem;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    margin-top: 1.2rem;
    padding: 1.5rem;
    box-shadow: 0 8px 40px rgba(44, 90, 160, 0.15);
    border: 2px solid rgba(44, 90, 160, 0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 1rem 1.5rem;
    margin: 0.2rem 0;
    text-align: center;
    border-radius: 10px;
    background: rgba(74, 144, 226, 0.05);
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
  
  .btn-primary {
    margin-top: 1rem;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

@media (max-width: 575.98px) {
  .navbar-logo {
    height: 40px;
  }
  
  .brand-text {
    font-size: 0.85rem;
  }
  
  .navbar-collapse {
    padding: 1.2rem;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
}

/* Scroll effect */
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(44, 90, 160, 0.12);
  background-color: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44, 90, 160, 0.08);
}

/* Navbar Social Icons */
.navbar-social-icons {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.navbar-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--accent-color);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1rem;
	border: none;
	box-shadow: 0 3px 12px rgba(44, 90, 160, 0.2);
}

.navbar-social-link:hover {
	transform: translateY(-3px) scale(1.1);
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(44, 90, 160, 0.35);
	color: var(--accent-color);
}

.navbar-social-link.facebook:hover {
	background: linear-gradient(135deg, #1877f2, var(--secondary-color));
}

.navbar-social-link.instagram:hover {
	background: linear-gradient(135deg, #e4405f, #fd5949);
}

.navbar-social-link.tiktok:hover {
	background: linear-gradient(135deg, #000000, var(--primary-color));
}

/* Mobile Navigation for Social Icons */
@media (max-width: 991.98px) {
	.navbar-social-icons {
		justify-content: center !important;
		margin-top: 1.5rem;
		padding-top: 1.5rem;
		border-top: 2px solid rgba(44, 90, 160, 0.1);
		gap: 1.2rem;
	}
	
	.navbar-social-link {
		width: 44px;
		height: 44px;
		font-size: 1.2rem;
		border-radius: 10px;
	}
}

/* Animation for smooth appearance */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  animation: fadeInDown 0.8s ease-out;
}

/* Elegant hover effects */
.navbar-nav .nav-item:hover .nav-link {
  color: var(--secondary-color);
}

.navbar-brand:hover {
  transform: translateY(-1px);
  transition: transform 0.3s ease;
}

/* Text color utilities */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

/* Custom Navbar Styles */
.navbar-custom {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 90, 160, 0.1);
  box-shadow: 0 2px 20px rgba(44, 90, 160, 0.08);
  transition: all 0.3s ease;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 25px rgba(44, 90, 160, 0.12);
}

.navbar-brand {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-text-container {
  display: flex;
  gap: 0.3rem;
}

.brand-text {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.brand-highlight {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.navbar-brand:hover .brand-text {
  color: var(--secondary-color);
}

.navbar-brand:hover .brand-highlight {
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-family: 'Prompt', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary-color);
  padding: 0.8rem 1.2rem;
  margin: 0 0.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
  background: rgba(44, 90, 160, 0.05);
  transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

.navbar-nav .nav-link.active {
  color: var(--secondary-color);
  background: rgba(74, 144, 226, 0.08);
}

.navbar-nav .nav-link.active::after {
  width: 80%;
  background: var(--secondary-color);
}

.nav-cta {
  margin-left: 1rem;
}

.btn-contact {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
  color: #ffffff;
}

.btn-icon {
  font-size: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  filter: invert(0.3) sepia(1) saturate(5) hue-rotate(190deg);
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
  .navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.8rem 0;
  }
  
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  .brand-logo {
    height: 40px;
  }
  
  .brand-text-container {
    gap: 0.2rem;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.15);
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
    outline: none;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 90, 160, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-top: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.1);
  }
  
  .navbar-nav .nav-link {
    margin: 0.3rem 0;
    padding: 1rem 1.5rem;
    text-align: center;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
}

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.back-to-top-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(44, 90, 160, 0.4);
  background: linear-gradient(135deg, var(--secondary-color), var(--light-pink));
}

.back-to-top-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.back-to-top-btn.show {
  display: flex;
  animation: fadeInUp 0.4s ease;
}

.back-to-top-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 2px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Back to Top */
@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .back-to-top-icon {
    font-size: 20px;
  }
  
  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
  }
  
  .btn-contact {
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
  }
}

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-color), #1e6ab8);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(28, 127, 194, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.back-to-top-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(28, 127, 194, 0.4);
  background: linear-gradient(135deg, #1e6ab8, var(--primary-color));
}

.back-to-top-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.back-to-top-btn.show {
  display: flex;
  animation: fadeInUp 0.4s ease;
}

.back-to-top-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 2px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Back to Top */
@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .back-to-top-icon {
    font-size: 20px;
  }
}

/* Line Contact Button */
.line-contact-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #00B900, #00C300);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(0, 185, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.line-contact-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 185, 0, 0.4);
  background: linear-gradient(135deg, #00C300, #00B900);
  color: white;
  text-decoration: none;
}

.line-contact-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.line-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
}

.line-icon svg {
  width: 28px;
  height: 28px;
}

/* Floating Animation for Line Button */
.line-contact-btn {
  animation: lineFloat 3s ease-in-out infinite;
}

@keyframes lineFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.line-contact-btn:hover {
  animation: none;
}

/* Mobile Line Contact */
@media (max-width: 768px) {
  .line-contact-btn {
    bottom: 85px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .line-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Global Styles */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Account for sticky navbar */
}

body {
  font-family: 'Prompt', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  padding-top: 90px; /* Space for sticky navbar */
}

/* Universal Section Spacing */
section {
  padding: 6rem 0;
  margin-bottom: 2rem;
}

/* Content spacing within sections */
section .container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section h2 {
  margin-bottom: 3rem;
}

section h3 {
  margin-bottom: 2rem;
}

section .row {
  margin-bottom: 2rem;
}

section .col-md-6,
section .col-lg-4,
section .col-lg-6 {
  margin-bottom: 2rem;
}

/* Card and component spacing */
.card,
.info-card,
.feature-card,
.program-card,
.comparison-card,
.benefit-card {
  margin-bottom: 2rem;
}

.card-body,
.content-card {
  padding: 2rem;
}

/* List spacing */
ul, ol {
  margin-bottom: 2rem;
}

li {
  margin-bottom: 0.8rem;
}

/* Button spacing */
.btn {
  margin: 0.5rem;
}

.btn-group {
  margin-bottom: 2rem;
}

/* Responsive Section Spacing */
@media (max-width: 991.98px) {
  section {
    padding: 4rem 0;
    margin-bottom: 1.5rem;
  }
  
  section h2 {
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }
  
  section .row {
    margin-bottom: 1.5rem;
  }
  
  .card-body,
  .content-card {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
    margin-bottom: 1rem;
  }
  
  section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  section h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
  
  section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }
  
  section .row {
    margin-bottom: 1rem;
  }
  
  section .col-md-6,
  section .col-lg-4,
  section .col-lg-6 {
    margin-bottom: 1.5rem;
  }
  
  .card,
  .info-card,
  .feature-card,
  .program-card,
  .comparison-card,
  .benefit-card {
    margin-bottom: 1.5rem;
  }
  
  .card-body,
  .content-card {
    padding: 1.2rem;
  }
  
  li {
    margin-bottom: 0.6rem;
  }
  
  .btn {
    margin: 0.3rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Headings use Kanit font */
h1, h2, h3, h4, h5, h6, .hero-title, .hero-subtitle, .navbar-brand {
  font-family: 'Kanit', 'Segoe UI', sans-serif;
}

/* All text elements use Prompt for better readability */
p, span, div, a, button, .btn, .nav-link, .hero-description, .hero-actions {
  font-family: 'Prompt', sans-serif;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 0;
  height: 85vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-background.png') no-repeat top center;
  background-size: cover;
  /* background-attachment: fixed; */
  opacity: 1;
  z-index: 0;
}

/* Responsive height adjustments */
@media (max-width: 1199.98px) {
  .hero-section {
    height: 100vh;
  }
  
  .hero-section .container {
    padding-top: 100px;
  }
  
  .hero-section::before {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    height: 90vh;
    min-height: 600px;
  }
  
  .hero-section .container {
    padding-top: 80px;
    padding-bottom: 1.5rem;
  }
  
  .hero-section::before {
    background-size: cover;
    background-position: center top;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-section .container {
    padding-top: 60px;
    padding-bottom: 1rem;
  }
  
  .hero-content {
    padding: 1rem 0;
  }
  
  .hero-section::before {
    background-size: cover;
    background-position: center center;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    height: 75vh;
    min-height: 450px;
  }
  
  .hero-section .container {
    padding-top: 40px;
    padding-bottom: 0.5rem;
  }
  
  .hero-content {
    padding: 0.5rem 0;
  }
  
  .hero-section::before {
    background-size: cover;
    background-position: 30% center;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

/* Hero section container adjustments */
.hero-section .container {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 120px; /* Account for fixed navbar */
  padding-bottom: 2rem;
}

.hero-section .row {
  width: 100%;
  margin: 0;
}

/* Typography */
.hero-title {
  font-family: 'Kanit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--primary-color);
  position: relative;
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--light-pink));
  border-radius: 2px;
}

.hero-subtitle {
  font-family: 'Kanit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.7;
}

/* Responsive Typography for Hero Section */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
  }
  
  .hero-actions {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-description {
    font-size: 0.85rem;
  }
  
  .hero-actions .btn {
    width: 100%;
    margin-bottom: 0.8rem;
  }
}

.hero-description p {
  margin-bottom: 1rem;
  font-family: 'Prompt', sans-serif;
}

/* Buttons */
.btn {
  font-family: 'Prompt', sans-serif;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  font-family: 'Prompt', sans-serif;
}

.btn-primary:hover {
  background-color: #155a8a;
  border-color: #155a8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 127, 194, 0.3);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-family: 'Prompt', sans-serif;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 127, 194, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  font-family: 'Prompt', sans-serif;
}

.btn-secondary:hover {
  background-color: #a63356;
  border-color: #a63356;
  color: var(--white);
}

/* Hero Image */
.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .hero-description {
    font-size: 1rem;
    text-align: center;
  }
  
  .hero-actions {
    text-align: center;
  }
  
  .hero-actions .btn {
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Additional mobile styling for hero-actions */
  .hero-actions.d-flex.flex-column .btn {
    margin-bottom: 15px;
  }
  
  .hero-actions.d-flex.flex-column .btn:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-actions .btn {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .hero-actions .btn:last-child {
    margin-bottom: 0;
  }
}

/* Navbar Enhancements */
.navbar-brand {
  font-size: 1.5rem;
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  font-family: 'Prompt', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--dark-text) !important;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional Utilities */
.min-vh-100 {
  min-height: 100vh;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Font overrides for all elements */
* {
  font-family: 'Prompt', sans-serif;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: 'Kanit', sans-serif !important;
}

.navbar-brand, .hero-title, .hero-subtitle {
  font-family: 'Kanit', sans-serif !important;
}

/* Ensure all interactive elements use Prompt */
input, textarea, select, button, .form-control, .form-select {
  font-family: 'Prompt', sans-serif !important;
}

/* Navigation specific font settings */
.navbar-nav .nav-item .nav-link {
  font-family: 'Prompt', sans-serif !important;
  font-weight: 500;
}

/* Hero actions specific font */
.hero-actions a, .hero-actions button {
  font-family: 'Prompt', sans-serif !important;
  font-weight: 600;
}

/* Section 2: Program Section - Enhanced Beautiful Design */
.program-section {
  background: 
    /* Premium gradient overlay with depth */
    linear-gradient(135deg, 
      rgba(44, 90, 160, 0.08) 0%, 
      rgba(255, 255, 255, 0.95) 15%, 
      rgba(74, 144, 226, 0.06) 35%, 
      rgba(255, 255, 255, 1) 50%, 
      rgba(44, 90, 160, 0.05) 65%, 
      rgba(255, 255, 255, 0.98) 85%, 
      rgba(74, 144, 226, 0.04) 100%),
    /* Floating light effects */
    radial-gradient(ellipse 1200px 800px at 30% 20%, rgba(74, 144, 226, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 800px 1200px at 70% 80%, rgba(44, 90, 160, 0.06) 0%, transparent 70%),
    /* Subtle diamond pattern */
    linear-gradient(45deg, rgba(74, 144, 226, 0.02) 25%, transparent 25%, transparent 75%, rgba(74, 144, 226, 0.02) 75%),
    linear-gradient(-45deg, rgba(44, 90, 160, 0.015) 25%, transparent 25%, transparent 75%, rgba(44, 90, 160, 0.015) 75%);
  background-size: 100% 100%, 1200px 800px, 800px 1200px, 80px 80px, 80px 80px;
  background-position: center, 30% 20%, 70% 80%, 0 0, 40px 40px;
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  animation: gentleFloat 25s ease-in-out infinite;
}

/* Enhanced geometric background pattern with floating orbs */
.program-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    /* Large floating orbs */
    radial-gradient(circle 400px at 15% 30%, rgba(74, 144, 226, 0.08) 0%, rgba(74, 144, 226, 0.04) 30%, transparent 60%),
    radial-gradient(circle 500px at 85% 70%, rgba(44, 90, 160, 0.06) 0%, rgba(44, 90, 160, 0.03) 40%, transparent 70%),
    radial-gradient(circle 300px at 60% 10%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
    radial-gradient(circle 350px at 30% 90%, rgba(44, 90, 160, 0.04) 0%, transparent 60%),
    /* Sophisticated hexagonal pattern */
    linear-gradient(60deg, rgba(74, 144, 226, 0.015) 25%, transparent 25%),
    linear-gradient(-60deg, rgba(44, 90, 160, 0.01) 25%, transparent 25%),
    linear-gradient(0deg, rgba(74, 144, 226, 0.008) 50%, transparent 50%);
  background-size: 800px 800px, 1000px 1000px, 600px 600px, 700px 700px, 120px 120px, 120px 120px, 60px 60px;
  background-position: 15% 30%, 85% 70%, 60% 10%, 30% 90%, 0 0, 60px 60px, 30px 30px;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 30s ease-in-out infinite;
}

/* Beautiful floating animations */
@keyframes gentleFloat {
  0%, 100% {
    background-position: center, 30% 20%, 70% 80%, 0 0, 40px 40px;
  }
  25% {
    background-position: center, 35% 25%, 65% 75%, 10px 10px, 50px 30px;
  }
  50% {
    background-position: center, 25% 30%, 75% 70%, 20px 20px, 30px 50px;
  }
  75% {
    background-position: center, 32% 18%, 68% 82%, 5px 15px, 45px 35px;
  }
}

@keyframes orbFloat {
  0%, 100% {
    background-position: 15% 30%, 85% 70%, 60% 10%, 30% 90%, 0 0, 60px 60px, 30px 30px;
    opacity: 1;
  }
  25% {
    background-position: 18% 35%, 82% 65%, 58% 15%, 32% 88%, 20px 20px, 80px 40px, 50px 10px;
    opacity: 0.8;
  }
  50% {
    background-position: 12% 25%, 88% 75%, 62% 8%, 28% 92%, 40px 40px, 40px 80px, 10px 50px;
    opacity: 0.9;
  }
  75% {
    background-position: 20% 32%, 80% 68%, 55% 12%, 35% 85%, 10px 30px, 70px 50px, 40px 20px;
    opacity: 0.7;
  }
}

/* Enhanced elegant top border accent with glow */
.program-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(44, 90, 160, 0.3) 10%,
    var(--primary-color) 25%, 
    var(--secondary-color) 50%, 
    var(--primary-color) 75%, 
    rgba(44, 90, 160, 0.3) 90%,
    transparent 100%);
  box-shadow: 
    0 0 15px rgba(74, 144, 226, 0.4),
    0 2px 10px rgba(44, 90, 160, 0.2);
  border-radius: 2px;
  z-index: 1;
  animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    box-shadow: 
      0 0 15px rgba(74, 144, 226, 0.4),
      0 2px 10px rgba(44, 90, 160, 0.2);
    opacity: 1;
  }
  50% {
    box-shadow: 
      0 0 25px rgba(74, 144, 226, 0.6),
      0 4px 20px rgba(44, 90, 160, 0.3);
    opacity: 0.8;
  }
}




@keyframes borderShine {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

.section-title {
  font-family: 'Kanit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(44, 90, 160, 0.1);
}

.section-title .highlight {
  color: var(--secondary-color);
  position: relative;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.section-subtitle {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--light-text);
  line-height: 1.5;
  margin: 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1);
}

.intro-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(44, 90, 160, 0.12);
  border: 2px solid rgba(74, 144, 226, 0.15);
  margin-bottom: 3rem;
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 2;
}

.intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(74, 144, 226, 0.02) 0%, 
    transparent 50%, 
    rgba(44, 90, 160, 0.02) 100%);
  border-radius: 20px;
  z-index: -1;
}

.intro-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.8;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.program-details-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 12px 50px rgba(44, 90, 160, 0.15);
  border: 2px solid rgba(74, 144, 226, 0.2);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(20px);
}

.program-details-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  border-radius: 25px 25px 0 0;
  box-shadow: 0 2px 10px rgba(74, 144, 226, 0.4);
}

.program-details-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 2rem;
  text-align: center;
}

.highlight-text {
  color: var(--secondary-color);
  font-weight: 800;
}

.title-underline {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto;
  border-radius: 2px;
}

.doctor-section {
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.doctor-intro-card {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, var(--white) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(74, 144, 226, 0.15);
  text-align: center;
}

.doctor-intro {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  color: var(--dark-text);
  margin: 0;
  line-height: 1.7;
}

.benefits-section {
  margin-bottom: 3rem;
}

/* Simplified Modern Cards */
.modern-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid rgba(74, 144, 226, 0.1);
  height: 100%;
  box-shadow: 0 4px 20px rgba(44, 90, 160, 0.08);
}



.card-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(74, 144, 226, 0.15);
  text-align: center;
}

.card-title {
  font-family: 'Kanit', sans-serif;
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Enhanced Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-color);
  line-height: 1.6;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
}

.benefits-list li:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(5px);
  border-left-color: var(--primary-color);
  box-shadow: 0 6px 25px rgba(44, 90, 160, 0.15);
}

/* Enhanced Fat Areas Grid */
.fat-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fat-area-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid rgba(74, 144, 226, 0.15);
  text-align: center;
  box-shadow: 0 4px 18px rgba(44, 90, 160, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.fat-area-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--secondary-color) 30%, 
    var(--primary-color) 70%, 
    transparent 100%);
  border-radius: 15px 15px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fat-area-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(74, 144, 226, 0.2);
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.95);
}

.fat-area-item:hover::before {
  opacity: 1;
}

.area-text {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
  line-height: 1.4;
}

/* Simplified Certification Section */
.certification-section {
  margin-top: 3rem;
}

.certification-card {
  background: linear-gradient(135deg, var(--white) 0%, rgba(74, 144, 226, 0.03) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--secondary-color);
  position: relative;
  text-align: center;
}

.certification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px 20px 0 0;
}

.cert-title {
  font-family: 'Kanit', sans-serif;
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.certification-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.05rem;
  color: var(--dark-text);
  line-height: 1.7;
  margin: 0;
}

.highlight-cert {
  color: var(--secondary-color);
  font-weight: 700;
}

/* Responsive Design for Program Section */
@media (max-width: 991.98px) {
  .program-section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .intro-card {
    padding: 2.5rem;
    margin-bottom: 2.5rem;
  }
  
  .program-details-card {
    padding: 2.5rem;
  }
  
  .program-details-title {
    font-size: 1.6rem;
  }
  
  .modern-card {
    padding: 2rem;
  }
  
  .fat-areas-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

@media (max-width: 767.98px) {
  .program-section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .intro-card {
    padding: 2rem;
  }
  
  .program-details-card {
    padding: 2rem;
  }
  
  .program-details-title {
    font-size: 1.4rem;
  }
  
  .modern-card {
    padding: 1.8rem;
  }
  
  .benefits-list li {
    font-size: 0.95rem;
    padding: 1rem 1.2rem;
  }
  
  .fat-area-item {
    padding: 1rem;
  }
  
  .area-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.7rem;
  }
  
  .intro-card {
    padding: 1.5rem;
  }
  
  .program-details-card {
    padding: 1.5rem;
  }
  
  .modern-card {
    padding: 1.5rem;
  }
}

.certification-section {
  margin-bottom: 2rem;
}

.certification-card {
  background: var(--light-pink);
  border-radius: 15px;
  padding: 1.8rem;
  border-left: 5px solid var(--secondary-color);
}

.certification-text {
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  color: var(--dark-text);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  text-align: center;
}

.cta-section .btn {
  margin-bottom: 1rem;
}

/* Responsive Design for Section 2 */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 1.9rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .program-details-card {
    padding: 2rem;
  }
  
  .program-details-title {
    font-size: 1.4rem;
  }
  
  .intro-card {
    padding: 1.5rem;
  }
  
  .intro-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.7rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .program-details-card {
    padding: 1.5rem;
  }
  
  .program-details-title {
    font-size: 1.3rem;
  }
  
  .intro-card {
    padding: 1.2rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .benefits-list li {
    font-size: 0.95rem;
  }
  
  .fat-reduction-card {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .certification-card {
    padding: 1.5rem;
  }
  
  .certification-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .program-details-card {
    padding: 1.2rem;
  }
  
  .program-details-title {
    font-size: 1.2rem;
  }
  
  .cta-section .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1rem auto;
  }
  
  .cta-section .btn:last-child {
    margin-bottom: 0;
  }
}

/* Section 3: About Prefix Clinic */
.about-section {
  background: linear-gradient(135deg, 
    rgba(237, 199, 212, 0.1) 0%, 
    var(--white) 50%, 
    rgba(166, 203, 229, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23a6cbe5" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23edc7d4" opacity="0.4"/><circle cx="40" cy="70" r="1" fill="%231c7fc2" opacity="0.2"/></svg>');
  background-size: 200px 200px;
  opacity: 0.5;
  z-index: 0;
  animation: floatingDots 20s infinite linear;
}

@keyframes floatingDots {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(360deg); }
}

.about-title {
  font-family: 'Kanit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 1rem;
  position: relative;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--light-pink));
  border-radius: 2px;
}

.about-main-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(28, 127, 194, 0.15);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.about-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-images {
  height: 100%;
}

.clinic-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  cursor: pointer; /* Make it clickable */
}

.clinic-image-card:hover {
  transform: translateY(-5px);
}

.clinic-main-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.clinic-image-card:hover .clinic-main-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem 1.5rem 1rem;
  color: white;
}

.image-label {
  font-family: 'Kanit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.clinic-image-small {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 130px;
  cursor: pointer; /* Make it clickable */
}

.clinic-image-small:hover {
  transform: translateY(-3px);
}

.clinic-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.clinic-image-small:hover img {
  transform: scale(1.05);
}

.small-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  padding: 1rem 0.8rem 0.5rem;
  color: white;
}

.small-label {
  font-family: 'Prompt', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  text-align: center;
}

.clinic-branding {
  text-align: center;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 1.5rem;
}

.clinic-name {
  font-family: 'Kanit', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.4;
  margin: 0;
}

.philosophy-section {
  text-align: center;
}

.philosophy-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--light-text);
  line-height: 1.7;
  margin: 0;
  padding: 1rem 0;
}

.concept-section {
  margin-bottom: 2rem;
}

.concept-card {
  background: linear-gradient(135deg, var(--light-blue) 0%, rgba(255, 255, 255, 0.8) 100%);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border-left: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.concept-card:hover {
  transform: translateY(-5px);
}

.concept-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.concept-subtitle {
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.concept-description {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.6;
  margin: 0;
}

.environment-section {
  margin-bottom: 2rem;
}

.environment-card {
  background: var(--light-pink);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(204, 62, 108, 0.2);
}

.environment-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.05rem;
  color: var(--dark-text);
  line-height: 1.6;
  margin: 0;
}

.environment-text strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.cta-about .btn {
  margin-bottom: 1rem;
  min-width: 200px;
}

/* Responsive Design for Section 3 */
@media (max-width: 991.98px) {
  .about-title {
    font-size: 1.9rem;
  }
  
  .about-main-card {
    padding: 2.5rem;
  }
  
  .clinic-name {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .philosophy-text {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .concept-title {
    font-size: 1.2rem;
  }
  
  .concept-card {
    padding: 1.8rem;
  }
  
  .environment-card {
    padding: 1.8rem;
  }
  
  .clinic-main-img {
    height: 250px;
  }
  
  .clinic-image-small {
    height: 120px;
    margin-bottom: 15px;
  }
  
  .about-images {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .about-title {
    font-size: 1.7rem;
  }
  
  .about-main-card {
    padding: 2rem;
  }
  
  .clinic-name {
    font-size: 1.2rem;
  }
  
  .philosophy-text {
    font-size: 1.05rem;
  }
  
  .concept-title {
    font-size: 1.1rem;
  }
  
  .concept-card {
    padding: 1.5rem;
  }
  
  .environment-card {
    padding: 1.5rem;
  }
  
  .environment-text {
    font-size: 1rem;
  }
  
  .clinic-main-img {
    height: 220px;
  }
  
  .clinic-image-small {
    height: 100px;
  }
  
  .image-label {
    font-size: 1rem;
  }
  
  .small-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .about-title {
    font-size: 1.5rem;
  }
  
  .about-main-card {
    padding: 1.5rem;
  }
  
  .clinic-name {
    font-size: 1.1rem;
  }
  
  .philosophy-text {
    font-size: 1rem;
  }
  
  .concept-title {
    font-size: 1rem;
  }
  
  .concept-subtitle {
    font-size: 0.9rem;
  }
  
  .concept-description {
    font-size: 0.95rem;
  }
  
  .concept-card,
  .environment-card {
    padding: 1.2rem;
  }
  
  .environment-text {
    font-size: 0.95rem;
  }
  
  .clinic-main-img {
    height: 200px;
  }
  
  .clinic-image-small {
    height: 90px;
  }
  
  .image-overlay {
    padding: 1.5rem 1rem 0.8rem;
  }
  
  .image-label {
    font-size: 0.9rem;
  }
  
  .small-overlay {
    padding: 0.8rem 0.5rem 0.4rem;
  }
  
  .small-label {
    font-size: 0.75rem;
  }
  
  .cta-about .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1rem auto;
  }
  
  .cta-about .btn:last-child {
    margin-bottom: 0;
  }
}

/* Section 4: Why Choose Prefix Clinic */
.why-choose-section {
  background: linear-gradient(135deg, 
    var(--white) 0%, 
    rgba(166, 203, 229, 0.15) 50%, 
    var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23a6cbe5" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
  z-index: 0;
}

.why-choose-title {
  font-family: 'Kanit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 1rem;
  position: relative;
}

.why-choose-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--light-pink));
  border-radius: 2px;
}

.why-choose-subtitle {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--light-text);
  line-height: 1.5;
  margin: 0;
}

.advantages-container {
  position: relative;
  z-index: 1;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.personalized-card {
  border-color: rgba(28, 127, 194, 0.2);
}

.personalized-card:hover {
  border-color: var(--primary-color);
}

.medical-card {
  border-color: rgba(204, 62, 108, 0.2);
}

.medical-card:hover {
  border-color: var(--secondary-color);
}

.advantage-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-blue);
}

.advantage-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
  transition: all 0.3s ease;
}

.advantage-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(44, 90, 160, 0.4);
}

.advantage-icon i {
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
}

.icon-symbol {
  font-size: 1.8rem;
  filter: grayscale(20%);
}

.advantage-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 0;
  line-height: 1.3;
}

.personalized-card .advantage-title {
  color: var(--primary-color);
}

.medical-card .advantage-title {
  color: var(--secondary-color);
}

.advantage-content {
  flex-grow: 1;
}

.advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantage-list li {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.advantage-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.personalized-card .advantage-list li::before {
  color: var(--primary-color);
}

.medical-card .advantage-list li::before {
  color: var(--secondary-color);
}

.advantage-list li:last-child {
  margin-bottom: 0;
}

.cta-why-choose {
  margin-top: 3rem;
}

.cta-highlight-box {
  background: linear-gradient(135deg, var(--light-pink) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid rgba(204, 62, 108, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.cta-highlight-text {
  font-family: 'Kanit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.cta-buttons .btn {
  margin-bottom: 1rem;
  min-width: 180px;
}

/* Responsive Design for Section 4 */
@media (max-width: 991.98px) {
  .why-choose-title {
    font-size: 1.9rem;
  }
  
  .why-choose-subtitle {
    font-size: 1.1rem;
  }
  
  .advantage-card {
    padding: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .advantage-title {
    font-size: 1.3rem;
  }
  
  .cta-highlight-text {
    font-size: 1.2rem;
  }
  
  .cta-highlight-box {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .why-choose-title {
    font-size: 1.7rem;
  }
  
  .why-choose-subtitle {
    font-size: 1.05rem;
  }
  
  .advantage-card {
    padding: 1.5rem;
  }
  
  .advantage-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .advantage-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .advantage-title {
    font-size: 1.2rem;
  }
  
  .advantage-list li {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .cta-highlight-text {
    font-size: 1.1rem;
  }
  
  .cta-highlight-box {
    padding: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .why-choose-title {
    font-size: 1.5rem;
  }
  
  .why-choose-subtitle {
    font-size: 1rem;
  }
  
  .advantage-card {
    padding: 1.2rem;
  }
  
  .advantage-icon {
    width: 50px;
    height: 50px;
  }
  
  .icon-symbol {
    font-size: 1.5rem;
  }
  
  .advantage-title {
    font-size: 1.1rem;
  }
  
  .advantage-list li {
    font-size: 0.9rem;
    padding-left: 1.8rem;
  }
  
  .cta-highlight-text {
    font-size: 1rem;
  }
  
  .cta-highlight-box {
    padding: 1.5rem;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 1rem auto;
  }
  
  .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

/* Section 5: How EndoliftX Works */
.how-it-works-section {
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.9) 0%, 
      rgba(237, 199, 212, 0.15) 30%,
      rgba(255, 255, 255, 0.85) 70%,
      rgba(166, 203, 229, 0.15) 100%),
    url('../images/bg_blue.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding: 8rem 0;
  margin-bottom: 3rem;
}

/* Enhanced content visibility on background */
.how-it-works-section .container {
  position: relative;
  z-index: 2;
}

.how-it-works-section .section-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(44, 90, 160, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.1);
}

.how-it-works-title {
  font-family: 'Kanit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.how-it-works-title .highlight {
  color: var(--primary-color);
  position: relative;
}

.how-it-works-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--light-pink));
  border-radius: 2px;
}

.how-it-works-subtitle {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--light-text);
  line-height: 1.5;
  margin: 0;
}

/* Enhanced Intro Section with background compatibility */
.intro-section-enhanced {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(44, 90, 160, 0.15);
  border: 1px solid rgba(74, 144, 226, 0.1);
  margin: 2rem 0;
}

.intro-section-enhanced::before {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(28, 127, 194, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.intro-section-enhanced > * {
  position: relative;
  z-index: 1;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(28, 127, 194, 0.3);
  margin-bottom: 2rem;
}

.badge-icon {
  font-size: 1.3rem;
  margin-right: 0.8rem;
}

/* Enhanced Content Card with background compatibility */
.intro-content-card {
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(74, 144, 226, 0.1);
  padding: 2rem;
}

/* Enhanced Title */
.intro-header {
  text-align: center;
  position: relative;
}

.intro-title {
  font-family: 'Kanit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.title-highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.title-decoration {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto;
  border-radius: 2px;
}

/* Description Cards */
.intro-description-card {
  display: flex;
  align-items: flex-start;
  background: rgba(28, 127, 194, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.intro-description-card:hover {
  background: rgba(28, 127, 194, 0.1);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(28, 127, 194, 0.15);
}

.description-icon {
  font-size: 2rem;
  margin-right: 1rem;
  min-width: 50px;
  text-align: center;
}

.intro-description {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.7;
  margin: 0;
}

/* Enhanced Technology Highlight */
.technology-highlight-enhanced {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(28, 127, 194, 0.2);
  margin-top: 1.5rem;
}

.highlight-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.highlight-icon {
  font-size: 1.8rem;
  margin-right: 0.8rem;
}

.highlight-title {
  font-family: 'Kanit', sans-serif;
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

/* Feature Spotlight */
.feature-spotlight {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.spotlight-number {
  font-family: 'Kanit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.spotlight-unit {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  color: var(--light-text);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.spotlight-desc {
  font-family: 'Prompt', sans-serif;
  color: var(--dark-text);
  font-weight: 500;
  margin: 0;
}

.technology-info {
  margin-bottom: 1.5rem;
}

.tech-description {
  font-family: 'Prompt', sans-serif;
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Enhanced Benefits Mini */
.benefits-mini-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-mini-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 20px rgba(44, 90, 160, 0.12);
  transition: all 0.3s ease;
  border: 1px solid rgba(74, 144, 226, 0.15);
}

.benefit-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44, 90, 160, 0.2);
  background: rgba(255, 255, 255, 0.98);
}

.benefit-icon {
  font-size: 2rem;
  margin-right: 1rem;
  min-width: 50px;
  text-align: center;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.benefit-desc {
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem;
  color: var(--light-text);
  margin: 0;
}

/* Conclusion Card */
.highlight-conclusion-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conclusion-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.highlight-conclusion {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

/* Enhanced Images Section */
.intro-images-enhanced {
  height: 100%;
  display: flex;
}

.image-container {
  width: 100%;
}

/* Logo Showcase Card */
.logo-showcase-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}



.logo-frame {
  background: linear-gradient(135deg, #f8f9ff, #ffffff);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid rgba(28, 127, 194, 0.1);
}

.endolift-logo {
  max-height: 80px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-badge {
  background: rgba(28, 127, 194, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

/* Device Showcase Card */
.device-showcase-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.device-frame {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9ff, #ffffff);
  padding: 1rem;
  margin-bottom: 1rem;
}

.device-image {
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.device-image:hover {
  transform: scale(1.05);
}

.device-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.device-frame:hover .device-overlay {
  opacity: 1;
}

.device-features {
  position: relative;
  height: 100%;
}

.feature-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--secondary-color);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(204, 62, 108, 0.3);
  animation: pulse 2s infinite;
}

.feature-dot:nth-child(1) { top: 20%; left: 30%; }
.feature-dot:nth-child(2) { top: 40%; right: 25%; }
.feature-dot:nth-child(3) { bottom: 30%; left: 40%; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 4px rgba(204, 62, 108, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(204, 62, 108, 0.1); }
  100% { box-shadow: 0 0 0 4px rgba(204, 62, 108, 0.3); }
}

.device-info {
  text-align: center;
}

.device-name {
  font-family: 'Kanit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.device-desc {
  font-family: 'Prompt', sans-serif;
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.device-specs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.spec-item {
  background: rgba(28, 127, 194, 0.1);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive Design for Enhanced Intro */
@media (max-width: 991.98px) {
  .intro-section-enhanced {
    padding: 2rem;
  }
  
  .intro-content-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .intro-title {
    font-size: 1.7rem;
  }
  
  .benefits-mini-enhanced {
    grid-template-columns: 1fr;
  }
  
  .benefit-mini-card {
    text-align: center;
  }
  
  .benefit-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .intro-section-enhanced {
    padding: 1.5rem;
  }
  
  .intro-content-card {
    padding: 1.5rem;
  }
  
  .intro-title {
    font-size: 1.5rem;
  }
  
  .section-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .feature-spotlight {
    padding: 1rem;
  }
  
  .spotlight-number {
    font-size: 2.5rem;
  }
  
  .intro-description-card {
    flex-direction: column;
    text-align: center;
  }
  
  .description-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .logo-showcase-card,
  .device-showcase-card {
    padding: 1.2rem;
  }
  
  .highlight-conclusion-card {
    flex-direction: column;
  }
  
  .conclusion-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .device-specs {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-mini-card {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-icon {
    margin-bottom: 0.8rem;
  }
}

/* Intro Section */
.intro-section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(28, 127, 194, 0.1);
}

.intro-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.intro-description {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.technology-highlight {
  background: var(--light-blue);
  border-radius: 15px;
  padding: 1.8rem;
  margin-top: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.highlight-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.05rem;
  color: var(--dark-text);
  line-height: 1.6;
}

.benefits-mini {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.benefit-mini-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  color: var(--dark-text);
}

.mini-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.highlight-conclusion {
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  text-align: center;
}

/* How it Works Process */
.how-works-section {
  margin-bottom: 3rem;
}

.section-subtitle-main {
  font-family: 'Kanit', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

.work-process-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--light-blue);
  transition: all 0.3s ease;
}

.work-process-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.process-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.process-number {
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.process-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 0;
  line-height: 1.3;
}

.process-description {
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

/* Interactive Device Diagram */
.device-diagram-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  border-radius: 25px;
  padding: 3rem 2rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.device-diagram-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(28, 127, 194, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.device-diagram-container {
  position: relative;
  z-index: 1;
}

.diagram-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.interactive-device-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Device Image with Hotspots */
.device-main-image {
  position: relative;
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(28, 127, 194, 0.1);
}

.device-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.device-main-image:hover .device-img {
  transform: scale(1.02);
}

/* Interactive Hotspots */
.hotspot {
  position: absolute;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.hotspot-1 {
  top: 25%;
  left: 30%;
}

.hotspot-2 {
  top: 50%;
  right: 25%;
}

.hotspot-3 {
  bottom: 25%;
  left: 40%;
}

.hotspot-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border-radius: 50%;
  animation: pulse-hotspot 2s infinite;
  opacity: 0.8;
}

.hotspot-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: white;
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--secondary-color);
  z-index: 2;
}

@keyframes pulse-hotspot {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
}

.hotspot:hover {
  transform: scale(1.2);
}

.hotspot:hover .hotspot-pulse {
  animation-duration: 1s;
}

/* Feature Cards */
.device-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.2s ease;
  opacity: 1;
  transform: translateX(20px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.3s ease;
}

.feature-card.active {
  opacity: 1;
  transform: translateX(0);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(28, 127, 194, 0.2);
}

.feature-card.active::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateX(0);
  box-shadow: 0 15px 35px rgba(28, 127, 194, 0.15);
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(28, 127, 194, 0.3);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.feature-description {
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

/* Device Specs Grid */
.device-specs-grid {
  margin-top: 2rem;
}

.spec-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(28, 127, 194, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(28, 127, 194, 0.15);
  border-color: var(--primary-color);
}

.spec-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.spec-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.spec-desc {
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem;
  color: var(--light-text);
  margin: 0;
}

/* Responsive Design for Device Diagram */
@media (max-width: 991.98px) {
  .interactive-device-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .device-diagram-section {
    padding: 2rem 1.5rem;
  }
  
  .diagram-title {
    font-size: 1.5rem;
  }
  
  .device-features {
    order: 2;
  }
  
  .device-main-image {
    order: 1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .device-diagram-section {
    padding: 1.5rem 1rem;
    margin: 2rem 0;
  }
  
  .diagram-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .device-main-image {
    padding: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    align-self: center;
    margin-bottom: 1rem;
  }
  
  .hotspot {
    width: 35px;
    height: 35px;
  }
  
  .hotspot-number {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  
  .spec-card {
    padding: 1.2rem;
  }
  
  .spec-icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .feature-card {
    gap: 1rem;
  }
  
  .hotspot-1 {
    top: 20%;
    left: 25%;
  }
  
  .hotspot-2 {
    top: 45%;
    right: 20%;
  }
  
  .hotspot-3 {
    bottom: 20%;
    left: 35%;
  }
}

/* Animation keyframes for device diagram */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.device-diagram-section.animate-in {
  animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initially hide hotspots for animation */
.hotspot {
  opacity: 0;
}

/* Feature card entrance animation */
.feature-card.active {
  animation: slideInRight 0.5s ease forwards;
}

@keyframes slideInRight {
  0% {
    opacity: 0.6;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.wavelength-info {
  background: var(--light-pink);
  border-radius: 15px;
  padding: 1.8rem;
  margin-top: 2rem;
  text-align: center;
  border: 2px solid rgba(204, 62, 108, 0.2);
}

.wavelength-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.wavelength-description {
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  color: var(--dark-text);
  line-height: 1.6;
  margin: 0;
}

/* Info Cards Grid */
.info-grid {
  margin-top: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
}

.results-card {
  border-left: 4px solid var(--primary-color);
}

.suitable-card {
  border-left: 4px solid var(--secondary-color);
}

.areas-card {
  border-left: 4px solid #28a745;
}

.advantages-card {
  border-left: 4px solid #fd7e14;
}

.info-card-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.results-card .info-card-title {
  color: var(--primary-color);
}

.suitable-card .info-card-title {
  color: var(--secondary-color);
}

.areas-card .info-card-title {
  color: #28a745;
}

.advantages-card .info-card-title {
  color: #fd7e14;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.5;
}

.info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.results-card .info-list li::before {
  color: var(--primary-color);
}

.suitable-card .info-list li::before {
  color: var(--secondary-color);
}

.areas-card .info-list li::before {
  color: #28a745;
}

.advantages-card .info-list li::before {
  color: #fd7e14;
}

/* Timeline */
.timeline-section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.timeline-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.2rem;
  position: relative;
}

.timeline-marker.immediate {
  background: #28a745;
}

.timeline-marker.progressive {
  background: var(--primary-color);
}

.timeline-marker.lasting {
  background: var(--secondary-color);
}

.timeline-marker::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: var(--light-blue);
}

.timeline-item:last-child .timeline-marker::after {
  display: none;
}

.timeline-content {
  flex-grow: 1;
}

.timeline-phase {
  font-family: 'Kanit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.timeline-description {
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.5;
  margin: 0;
}

/* CTA */
.cta-how-works {
  background: var(--light-blue);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(28, 127, 194, 0.2);
}

.cta-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
}

.cta-buttons-how .btn {
  margin-bottom: 1rem;
  min-width: 200px;
}

/* Responsive Design for Section 5 */
@media (max-width: 991.98px) {
  .how-it-works-title {
    font-size: 1.8rem;
  }
  
  .intro-section {
    padding: 2rem;
  }
  
  .intro-title {
    font-size: 1.4rem;
  }
  
  .section-subtitle-main {
    font-size: 1.6rem;
  }
  
  .work-process-card {
    padding: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .info-card {
    padding: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .timeline-section {
    padding: 2rem;
  }
  
  .timeline-title {
    font-size: 1.5rem;
  }
  
  .benefits-mini {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .how-it-works-title {
    font-size: 1.6rem;
  }
  
  .how-it-works-subtitle {
    font-size: 1.05rem;
  }
  
  .intro-section {
    padding: 1.5rem;
  }
  
  .intro-title {
    font-size: 1.3rem;
  }
  
  .intro-description {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .technology-highlight {
    padding: 1.5rem;
  }
  
  .section-subtitle-main {
    font-size: 1.4rem;
  }
  
  .work-process-card {
    padding: 1.5rem;
  }
  
  .process-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .process-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .process-title {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .info-card-title {
    font-size: 1.2rem;
  }
  
  .info-list li {
    font-size: 0.9rem;
  }
  
  .timeline-section {
    padding: 1.5rem;
  }
  
  .timeline-title {
    font-size: 1.4rem;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .timeline-marker {
    align-self: flex-start;
  }
  
  .timeline-marker::after {
    display: none;
  }
  
  .cta-how-works {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .how-it-works-title {
    font-size: 1.4rem;
  }
  
  .how-it-works-subtitle {
    font-size: 1rem;
  }
  
  .intro-section {
    padding: 1.2rem;
  }
  
  .intro-title {
    font-size: 1.2rem;
  }
  
  .intro-description {
    font-size: 0.9rem;
  }
  
  .technology-highlight {
    padding: 1.2rem;
  }
  
  .highlight-text {
    font-size: 0.95rem;
  }
  
  .benefit-mini-item {
    font-size: 0.9rem;
  }
  
  .section-subtitle-main {
    font-size: 1.3rem;
  }
  
  .work-process-card {
    padding: 1.2rem;
  }
  
  .process-title {
    font-size: 1rem;
  }
  
  .process-description {
    font-size: 0.9rem;
  }
  
  .wavelength-info {
    padding: 1.2rem;
  }
  
  .wavelength-title {
    font-size: 1.1rem;
  }
  
  .wavelength-description {
    font-size: 0.9rem;
  }
  
  .info-card {
    padding: 1.2rem;
  }
  
  .info-card-title {
    font-size: 1.1rem;
  }
  
  .info-list li {
    font-size: 0.85rem;
    padding-left: 1.5rem;
  }
  
  .timeline-section {
    padding: 1.2rem;
  }
  
  .timeline-title {
    font-size: 1.3rem;
  }
  
  .timeline-phase {
    font-size: 1rem;
  }
  
  .timeline-description {
    font-size: 0.9rem;
  }
  
  .cta-how-works {
    padding: 1.2rem;
  }
  
  .cta-title {
    font-size: 1.2rem;
  }
  
  .cta-buttons-how .btn {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 1rem auto;
  }
  
  .cta-buttons-how .btn:last-child {
    margin-bottom: 0;
  }
}

/* Section 5 Enhanced Styles */
.intro-images {
	margin-bottom: 2rem;
}

.logo-showcase {
	text-align: center;
	margin-bottom: 2rem;
}

.device-showcase {
	text-align: center;
}

.endolift-logo {
	max-width: 200px;
	height: auto;
	filter: drop-shadow(0 4px 8px rgba(28, 127, 194, 0.1));
	transition: all 0.3s ease;
}

.endolift-logo:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 6px 12px rgba(28, 127, 194, 0.2));
}

.device-image {
	height: auto;
	border-radius: 8px;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
	transition: all 0.3s ease;
}

.device-image:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.device-label {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--primary-color);
	font-weight: 500;
	text-align: center;
}

.fiber-technology-showcase {
	background: linear-gradient(135deg, var(--secondary-light) 0%, #ffffff 100%);
	padding: 2rem;
	border-radius: 12px;
	margin-bottom: 2rem;
	box-shadow: 0 4px 15px rgba(28, 127, 194, 0.1);
}

.fiber-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.fiber-info {
	padding-left: 1rem;
}

.fiber-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 1rem;
}

.fiber-description {
	color: #555;
	line-height: 1.6;
}

.device-action-showcase {
	text-align: center;
	padding-left: 1rem;
}

.action-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
	transition: all 0.3s ease;
}

.action-image:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

@media (max-width: 767px) {
	.intro-images {
		text-align: center;
	}
	
	.fiber-info {
		padding-left: 0;
		margin-top: 1rem;
		text-align: center;
	}
	
	.device-action-showcase {
		padding-left: 0;
		margin-top: 1rem;
	}
	
	.endolift-logo {
		max-width: 150px;
	}
	
	.device-image {
		max-width: 200px;
	}
}

/* Result Gallery Styles */
.result-gallery-section {
	margin-top: 3rem;
}

.result-image-card {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.result-image-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.result-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.result-image-card:hover .result-image {
	transform: scale(1.1);
}

.result-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(28, 127, 194, 0.9), transparent);
	padding: 1rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.result-image-card:hover .result-overlay {
	transform: translateY(0);
}

.result-text {
	color: white;
	font-weight: 600;
	font-size: 0.9rem;
}

@media (max-width: 767px) {
	.result-image {
		height: 200px;
	}
	
	.result-overlay {
		transform: translateY(0);
		background: linear-gradient(to top, rgba(28, 127, 194, 0.7), transparent);
	}
}

/* Section 6 - Guide Styles - Redesigned */
.guide-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
	padding: 80px 0;
	position: relative;
}

.guide-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.guide-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	color: var(--primary-color);
	font-size: 2.5rem;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(28, 127, 194, 0.1);
}

.guide-subtitle {
	font-family: 'Prompt', sans-serif;
	font-size: 1.2rem;
	color: #666;
	font-weight: 400;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

.guide-main-container {
	max-width: 1100px;
	margin: 0 auto;
}

/* Navigation Pills */
.guide-nav-container {
	margin-bottom: 3rem;
}

.nav-pill {
	background: white;
	border-radius: 16px;
	padding: 1.5rem 1rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	border: 2px solid transparent;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.nav-pill:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(28, 127, 194, 0.15);
	border-color: var(--primary-color);
}

.nav-pill.active {
	background: linear-gradient(135deg, var(--primary-color) 0%, #1a6ba8 100%);
	border-color: var(--primary-color);
	color: white;
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(28, 127, 194, 0.25);
}

.pill-icon {
	font-size: 2rem;
	margin-bottom: 0.8rem;
	display: block;
}

.pill-text {
	font-family: 'Kanit', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.3;
}

.nav-pill.active .pill-text {
	color: white;
}

/* Content Cards */
.guide-content-wrapper {
	position: relative;
	min-height: 400px;
}

.guide-content-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
	border: 1px solid rgba(28, 127, 194, 0.1);
}

.guide-content-card.active {
	position: relative;
	opacity: 1;
	transform: translateY(0);
}

.guide-content-card.important-card {
	border: 1px solid rgba(204, 62, 108, 0.2);
}

.content-header {
	background: linear-gradient(135deg, var(--primary-color) 0%, #1a6ba8 100%);
	padding: 2rem 2.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.content-header.important {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #b83560 100%);
}

.header-icon {
	font-size: 2.5rem;
	flex-shrink: 0;
}

.content-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	color: white;
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.3;
}

.content-body {
	padding: 2.5rem;
}

/* Steps Grid */
.steps-grid {
	display: grid;
	gap: 1.5rem;
}

.step-item {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 12px;
	border-left: 4px solid var(--primary-color);
	transition: all 0.3s ease;
}

.step-item:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(28, 127, 194, 0.1);
}

.step-badge {
	background: linear-gradient(135deg, var(--primary-color) 0%, #1a6ba8 100%);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(28, 127, 194, 0.3);
}

.step-text {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #444;
	font-weight: 400;
	margin: 0;
	padding-top: 0.3rem;
}

/* Important Items */
.important-items {
	display: grid;
	gap: 1.2rem;
}

.important-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, rgba(204, 62, 108, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
	border-radius: 12px;
	border-left: 4px solid var(--secondary-color);
	transition: all 0.3s ease;
}

.important-item:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(204, 62, 108, 0.1);
}

.warning-icon {
	color: var(--secondary-color);
	font-size: 1.2rem;
	flex-shrink: 0;
	margin-top: 0.2rem;
}

.warning-text {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #444;
	font-weight: 400;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
	.guide-title {
		font-size: 2.2rem;
	}
}

@media (max-width: 991.98px) {
	.guide-title {
		font-size: 2rem;
	}
	
	.guide-subtitle {
		font-size: 1.1rem;
	}
	
	.content-body {
		padding: 2rem;
	}
	
	.content-header {
		padding: 1.8rem 2rem;
	}
	
	.content-title {
		font-size: 1.3rem;
	}
}

@media (max-width: 767.98px) {
	.guide-section {
		padding: 60px 0;
	}
	
	.guide-title {
		font-size: 1.8rem;
	}
	
	.guide-subtitle {
		font-size: 1rem;
	}
	
	.nav-pill {
		padding: 1.2rem 0.8rem;
	}
	
	.pill-icon {
		font-size: 1.8rem;
		margin-bottom: 0.5rem;
	}
	
	.pill-text {
		font-size: 0.9rem;
	}
	
	.content-body {
		padding: 1.5rem;
	}
	
	.content-header {
		padding: 1.5rem;
		flex-direction: column;
		text-align: center;
		gap: 0.8rem;
	}
	
	.content-title {
		font-size: 1.2rem;
	}
	
	.header-icon {
		font-size: 2rem;
	}
	
	.step-item {
		padding: 1.2rem;
		gap: 1rem;
	}
	
	.step-badge {
		width: 35px;
		height: 35px;
		font-size: 0.9rem;
	}
	
	.step-text {
		font-size: 0.95rem;
	}
	
	.important-item {
		padding: 1.2rem;
	}
	
	.warning-text {
		font-size: 0.95rem;
	}
}

/* Section 7 - Doctor Profile Styles - Enhanced with Background */
.doctor-section {
	padding: 7rem 0;
	position: relative;
	background: 
		linear-gradient(135deg, 
			rgba(255, 255, 255, 0.9) 0%, 
			rgba(74, 144, 226, 0.08) 30%,
			rgba(255, 255, 255, 0.85) 70%,
			rgba(74, 144, 226, 0.1) 100%),
		url('../images/bg_rain.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin-bottom: 3rem;
}

/* Doctor Section Main Title */
.doctor-section h2 {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 2.8rem;
	color: #ffffff;
	text-align: center;
	margin-bottom: 3rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 1px;
}



.doctor-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	color: #2c5aa0;
	font-size: 2.3rem;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.doctor-title .highlight {
	color: #4a90e2;
}

.doctor-profile-container {
	max-width: 1100px;
	margin: 0 auto;
}

.doctor-info-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	border-radius: 25px;
	padding: 3rem;
	box-shadow: 0 20px 60px rgba(44, 90, 160, 0.15);
	border: 2px solid rgba(74, 144, 226, 0.15);
	position: relative;
	overflow: hidden;
}

.doctor-info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #2c5aa0 0%, #4a90e2 50%, #2c5aa0 100%);
	box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

/* Enhanced Doctor Image Styling */
.doctor-image-container {
	position: relative;
	display: inline-block;
	margin-bottom: 2rem;
}

.doctor-image-frame {
	width: 300px;
	height: 350px;
	margin: 0 auto;
	border-radius: 25px;
	overflow: hidden;
	border: 4px solid var(--primary-color);
	box-shadow: 
		0 20px 40px rgba(44, 90, 160, 0.2),
		0 8px 16px rgba(44, 90, 160, 0.1);
	position: relative;
}



.doctor-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}





.doctor-badge {
	position: absolute;
	top: -10px;
	right: -10px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	padding: 0.8rem 1.2rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
	z-index: 2;
	border: 2px solid white;
}

.badge-text {
	display: block;
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	line-height: 1;
	margin-bottom: 0.2rem;
}

.badge-subtext {
	display: block;
	font-family: 'Prompt', sans-serif;
	font-weight: 500;
	font-size: 0.7rem;
	opacity: 0.9;
	line-height: 1;
}

.doctor-specialty {
	margin-top: 1rem;
}

.specialty-tag {
	display: inline-block;
	background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(44, 90, 160, 0.1) 100%);
	color: var(--primary-color);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.85rem;
	font-weight: 600;
	border: 1px solid rgba(74, 144, 226, 0.2);
	transition: all 0.3s ease;
}

.specialty-tag:hover {
	background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.doctor-image-section {
	position: relative;
}

/* Responsive Design for Doctor Image */
@media (max-width: 991.98px) {
	.doctor-image-frame {
		width: 250px;
		height: 300px;
	}
	
	.doctor-badge {
		padding: 0.6rem 1rem;
		top: -8px;
		right: -8px;
	}
	
	.badge-text {
		font-size: 0.8rem;
	}
	
	.badge-subtext {
		font-size: 0.65rem;
	}
}

@media (max-width: 767.98px) {
	.doctor-image-frame {
		width: 220px;
		height: 260px;
	}
	
	.doctor-name-card {
		padding: 2rem 1.5rem;
	}
	
	.doctor-badge {
		padding: 0.5rem 0.8rem;
		border-radius: 15px;
	}
}

.doctor-image-placeholder {
	width: 280px;
	margin: 0 auto 1.5rem auto;
	border-radius: 20px;
	overflow: hidden;
	border: 3px solid var(--primary-color);
	box-shadow: 0 15px 35px rgba(28, 127, 194, 0.15);
	position: relative;
	background: #ffffff;
}

.doctor-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.doctor-name-card {
	text-align: center;
	padding: 2.5rem 2rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	border: 2px solid rgba(74, 144, 226, 0.2);
	position: relative;
	overflow: hidden;
}



.doctor-name {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	color: #2c5aa0;
	font-size: 1.6rem;
	margin-bottom: 0.5rem;
}

.doctor-full-name {
	font-family: 'Prompt', sans-serif;
	font-size: 1.1rem;
	color: #4a90e2;
	margin-bottom: 0.3rem;
	font-weight: 500;
}

.doctor-license {
	font-family: 'Prompt', sans-serif;
	font-size: 0.95rem;
	color: #666;
	margin: 0;
	font-weight: 400;
}

.doctor-details {
	padding-left: 2rem;
}

.education-section,
.experience-section,
.certification-section {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid rgba(74, 144, 226, 0.15);

}



.section-content {
	width: 100%;
}

.section-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	color: #2c5aa0;
	margin-bottom: 1rem;
	line-height: 1.3;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(74, 144, 226, 0.2);
}

.education-text,
.certification-text {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	color: #555;
	line-height: 1.7;
	margin: 0;
	font-weight: 400;
}

.experience-items {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.experience-item {
	padding: 1rem 1.5rem;
	background: rgba(74, 144, 226, 0.03);
	border-radius: 10px;
	border-left: 3px solid #4a90e2;
	transition: all 0.3s ease;
}

.experience-item:hover {
	background: rgba(74, 144, 226, 0.06);
	border-left-color: #2c5aa0;
	transform: translateX(5px);
}

.item-text {
	font-family: 'Prompt', sans-serif;
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
	margin: 0;
	font-weight: 400;
}

/* Trust Indicators - Enhanced Design */
.trust-indicators {
	margin-top: 3rem;
}

.trust-card {
	background: #ffffff;
	padding: 2rem 1.5rem;
	border-radius: 15px;
	border: 2px solid rgba(74, 144, 226, 0.1);
	box-shadow: 0 5px 20px rgba(44, 90, 160, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
}

.trust-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(44, 90, 160, 0.15);
	border-color: rgba(74, 144, 226, 0.2);
}

.trust-content {
	width: 100%;
}

.trust-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	color: #2c5aa0;
	font-size: 1.1rem;
	margin-bottom: 0.8rem;
	line-height: 1.3;
}

.trust-desc {
	font-family: 'Prompt', sans-serif;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Responsive Design for Doctor Section */
@media (max-width: 768px) {
	.doctor-title {
		font-size: 1.8rem;
		line-height: 1.4;
	}
	
	.doctor-details {
		padding-left: 0;
		margin-top: 2rem;
	}
	
	.education-section,
	.experience-section,
	.certification-section {
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}
	
	.section-title {
		font-size: 1.1rem;
	}
	
	.trust-card {
		padding: 1.5rem 1rem;
		margin-bottom: 1rem;
	}
}

.trust-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	color: var(--primary-color);
	font-size: 1.1rem;
	margin-bottom: 0.8rem;
}

.trust-desc {
	font-family: 'Prompt', sans-serif;
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
	margin: 0;
	font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
	.doctor-title {
		font-size: 2.2rem;
	}
	
	.doctor-info-card {
		padding: 2.5rem;
	}
}

@media (max-width: 991.98px) {
	.doctor-title {
		font-size: 2rem;
	}
	
	.doctor-info-card {
		padding: 2rem;
	}
	
	.doctor-details {
		padding-left: 0;
		margin-top: 2rem;
	}
	
	.section-title {
		font-size: 1.1rem;
	}
}

@media (max-width: 767.98px) {
	.doctor-section {
		padding: 60px 0;
	}
	
	.doctor-title {
		font-size: 1.8rem;
	}
	
	.doctor-info-card {
		padding: 1.5rem;
	}
	
	.doctor-image-placeholder {
		width: 220px;
		height: 220px;
		border-radius: 16px;
	}
	
	.doctor-name {
		font-size: 1.3rem;
	}
	
	.doctor-full-name {
		font-size: 0.95rem;
	}
	
	.doctor-license {
		font-size: 0.85rem;
	}
	
	.education-section,
	.experience-section,
	.certification-section {
		flex-direction: column;
		gap: 1rem;
		padding: 1.2rem;
	}
	
	.section-icon {
		align-self: center;
		font-size: 1.8rem;
	}
	
	.section-title {
		font-size: 1rem;
		text-align: center;
	}
	
	.education-text,
	.certification-text,
	.item-text {
		font-size: 0.95rem;
		text-align: center;
	}
	
	.experience-item {
		flex-direction: column;
		text-align: center;
		gap: 0.3rem;
	}
	
	.item-bullet {
		align-self: center;
	}
	
	.trust-card {
		padding: 1.5rem 1rem;
		margin-bottom: 1rem;
	}
	
	.trust-icon {
		font-size: 2rem;
	}
	
	.trust-title {
		font-size: 1rem;
	}
	
	.trust-desc {
		font-size: 0.9rem;
	}
}

/* Section 8: Comparison - Table Design */
.comparison-section {
	background: linear-gradient(135deg, #ffffff 0%, rgba(74, 144, 226, 0.03) 50%, #ffffff 100%);
	padding: 5rem 0;
}

.comparison-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	color: #2c5aa0;
	font-size: 2.3rem;
	line-height: 1.3;
	margin-bottom: 1.5rem;
}

.comparison-title .highlight {
	color: #4a90e2;
}

.comparison-subtitle {
	font-family: 'Prompt', sans-serif;
	font-size: 1.15rem;
	color: #555;
	line-height: 1.7;
	max-width: 900px;
	margin: 0 auto;
}

.comparison-table-wrapper {
	margin-top: 3rem;
	overflow-x: auto;
}

.comparison-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(44, 90, 160, 0.15);
}

.comparison-table thead tr {
	background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
}

.comparison-table th {
	padding: 2rem 1.5rem;
	text-align: center;
	border-right: 2px solid rgba(255, 255, 255, 0.2);
	vertical-align: middle;
}

.comparison-table th:last-child {
	border-right: none;
}

.comparison-table .feature-column {
	width: 20%;
	background: rgba(44, 90, 160, 0.95);
	font-family: 'Kanit', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: #ffffff;
}

.comparison-table .tech-column {
	width: 26.66%;
	position: relative;
}

.comparison-table .tech-header h3 {
	font-family: 'Kanit', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.5rem 0;
}

.comparison-table .tech-header p {
	font-family: 'Prompt', sans-serif;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	font-weight: 400;
}

.comparison-table .featured-column {
	background: linear-gradient(135deg, #1a3d6d 0%, #2c5aa0 100%);
	position: relative;
}

.comparison-table .featured-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
	color: #1a3d6d;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.comparison-table tbody tr {
	transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
	background: rgba(74, 144, 226, 0.03);
}

.comparison-table tbody tr:nth-child(even) {
	background: rgba(74, 144, 226, 0.02);
}

.comparison-table tbody tr:nth-child(even):hover {
	background: rgba(74, 144, 226, 0.05);
}

.comparison-table td {
	padding: 1.5rem;
	border-bottom: 1px solid rgba(74, 144, 226, 0.1);
	border-right: 1px solid rgba(74, 144, 226, 0.1);
	vertical-align: middle;
}

.comparison-table td:last-child {
	border-right: none;
}

.comparison-table tbody tr:last-child td {
	border-bottom: none;
}

.comparison-table .feature-cell {
	font-family: 'Kanit', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: #2c5aa0;
	background: rgba(74, 144, 226, 0.05);
	text-align: left;
	padding-left: 1.5rem;
}

.comparison-table .tech-cell {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	color: #444;
	text-align: center;
	line-height: 1.6;
}

.comparison-table .featured-cell {
	background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(74, 144, 226, 0.08) 100%);
	font-weight: 500;
	color: #1a3d6d;
}

.comparison-table .featured-cell strong {
	color: #2c5aa0;
	font-weight: 600;
}

/* Responsive Design for Comparison Section */
@media (max-width: 992px) {
	.comparison-title {
		font-size: 1.8rem;
		line-height: 1.4;
	}
	
	.comparison-subtitle {
		font-size: 1rem;
		padding: 0 1rem;
	}
	
	.comparison-table th {
		padding: 1.5rem 1rem;
	}
	
	.comparison-table .tech-header h3 {
		font-size: 1.2rem;
	}
	
	.comparison-table .tech-header p {
		font-size: 0.85rem;
	}
	
	.comparison-table .feature-cell {
		font-size: 1rem;
	}
	
	.comparison-table .tech-cell {
		font-size: 0.9rem;
	}
}

@media (max-width: 768px) {
	.comparison-section {
		padding: 3rem 0;
	}
	
	.comparison-title {
		font-size: 1.5rem;
	}
	
	.comparison-subtitle {
		font-size: 0.95rem;
	}
	
	.comparison-table-wrapper {
		margin-top: 2rem;
	}
	
	.comparison-table th,
	.comparison-table td {
		padding: 1rem 0.8rem;
	}
	
	.comparison-table .feature-column {
		width: 30%;
		font-size: 1rem;
	}
	
	.comparison-table .tech-column {
		width: 23.33%;
	}
	
	.comparison-table .tech-header h3 {
		font-size: 1rem;
	}
	
	.comparison-table .tech-header p {
		font-size: 0.75rem;
	}
	
	.comparison-table .feature-cell {
		font-size: 0.9rem;
		padding-left: 1rem;
	}
	
	.comparison-table .tech-cell {
		font-size: 0.8rem;
	}
	
	.comparison-table .featured-badge {
		top: 5px;
		right: 5px;
		padding: 0.3rem 0.7rem;
		font-size: 0.7rem;
	}
}

@media (max-width: 576px) {
	.comparison-table {
		font-size: 0.85rem;
	}
	
	.comparison-table th,
	.comparison-table td {
		padding: 0.8rem 0.5rem;
	}
	
	.comparison-table .tech-header h3 {
		font-size: 0.9rem;
	}
	
	.comparison-table .tech-header p {
		font-size: 0.7rem;
		display: none; /* Hide subtitle on very small screens */
	}
	
	.comparison-table .feature-cell {
		font-size: 0.85rem;
	}
	
	.comparison-table .tech-cell {
		font-size: 0.75rem;
	}
}

/* Section 9: Promotion & Reviews */
	}
	
	.comparison-card {
		padding: 1.5rem;
	}
	
	.comparison-header {
		flex-direction: column;
		text-align: center;
		margin-bottom: 1.2rem;
	}
	
	.technology-icon {
		margin-right: 0;
		margin-bottom: 1rem;
	}
	
	.tech-title {
		font-size: 1.2rem;
	}
	
	.tech-description {
		font-size: 0.95rem;
	}
	
	.featured-badge {
		right: 1rem;
		font-size: 0.8rem;
		padding: 0.3rem 0.8rem;
	}
}

/* Section 9: Promotion & Reviews */
.promotion-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f8ff 100%);
}

.promotion-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	color: var(--primary-color);
	font-size: 2.3rem;
	margin-bottom: 1rem;
}

.promotion-subtitle {
	font-family: 'Prompt', sans-serif;
	font-size: 1.1rem;
	color: #666;
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto;
}

/* Promotion Cards */
.promotion-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 2.5rem;
	box-shadow: 0 6px 25px rgba(28, 127, 194, 0.1);
	border: 1px solid rgba(28, 127, 194, 0.1);
	position: relative;
	height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promotion-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(28, 127, 194, 0.15);
}

.special-offer {
	border: 2px solid var(--secondary-color);
	background: linear-gradient(135deg, #ffffff 0%, rgba(237, 199, 212, 0.05) 100%);
}

.promotion-badge {
	position: absolute;
	top: -1px;
	right: 2rem;
	background: linear-gradient(135deg, var(--secondary-color) 0%, #d63384 100%);
	color: #ffffff;
	padding: 0.5rem 1.2rem;
	border-radius: 0 0 12px 12px;
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
}

.offer-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.offer-details {
	margin-bottom: 2rem;
}

.detail-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.detail-item:last-child {
	margin-bottom: 0;
}

.detail-icon {
	width: 20px;
	height: 20px;
	background: var(--primary-color);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: bold;
	margin-right: 0.8rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.detail-text {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	color: #444;
	line-height: 1.5;
}

.offer-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}

.original-price {
	font-family: 'Prompt', sans-serif;
	font-size: 0.95rem;
	color: #888;
	text-decoration: line-through;
}

.special-price {
	font-family: 'Kanit', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--secondary-color);
}

.contact-info {
	text-align: center;
}

.contact-text {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	color: #666;
	margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews-section {
	padding: 3rem 0;
	border-top: 1px solid rgba(28, 127, 194, 0.1);
}

.reviews-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1.8rem;
	color: var(--primary-color);
	margin-bottom: 0.8rem;
}

.reviews-subtitle {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	color: #666;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

.review-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(28, 127, 194, 0.08);
	height: 100%;
	transition: transform 0.2s ease;
}

.review-card:hover {
	transform: translateY(-2px);
}

.stars {
	margin-bottom: 1rem;
}

.star {
	color: #ffc107;
	font-size: 1.2rem;
	margin-right: 0.2rem;
}

.review-text {
	font-family: 'Prompt', sans-serif;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #444;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.reviewer-info {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.reviewer-name {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--primary-color);
}

.review-date {
	font-family: 'Prompt', sans-serif;
	font-size: 0.85rem;
	color: #888;
}

/* Call to Action */
.cta-section {
	background: linear-gradient(135deg, rgba(28, 127, 194, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
	padding: 3rem 2rem;
	border-radius: 20px;
	border: 1px solid rgba(28, 127, 194, 0.1);
}

.cta-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1.8rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.cta-description {
	font-family: 'Prompt', sans-serif;
	font-size: 1.1rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
	.promotion-title {
		font-size: 1.9rem;
	}
	
	.promotion-subtitle {
		font-size: 1rem;
	}
	
	.promotion-card {
		padding: 1.8rem;
	}
	
	.offer-title {
		font-size: 1.3rem;
	}
	
	.detail-text {
		font-size: 0.95rem;
	}
	
	.special-price {
		font-size: 1.5rem;
	}
	
	.promotion-badge {
		right: 1rem;
		font-size: 0.8rem;
		padding: 0.4rem 1rem;
	}
	
	.reviews-title {
		font-size: 1.5rem;
	}
	
	.review-card {
		padding: 1.5rem;
	}
	
	.review-text {
		font-size: 0.9rem;
	}
	
	.cta-section {
		padding: 2rem 1.5rem;
	}
	
	.cta-title {
		font-size: 1.5rem;
	}
	
	.cta-description {
		font-size: 1rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		gap: 0.8rem;
	}
}

/* Section 10: FAQ */
.faq-section {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f8ff 100%);
}

.faq-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	color: var(--primary-color);
	font-size: 2.2rem;
	margin-bottom: 1rem;
}

.faq-subtitle {
	font-family: 'Prompt', sans-serif;
	font-size: 1.1rem;
	color: #666;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

.faq-container {
	max-width: 100%;
}

.faq-item {
	background: #ffffff;
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: 0 2px 15px rgba(28, 127, 194, 0.08);
	border: 1px solid rgba(28, 127, 194, 0.1);
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 20px rgba(28, 127, 194, 0.12);
}

.faq-item:last-child {
	margin-bottom: 0;
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	cursor: pointer;
	background: #ffffff;
	transition: background-color 0.2s ease;
	user-select: none;
}

.faq-question:hover {
	background: rgba(28, 127, 194, 0.02);
}

.faq-question[aria-expanded="true"] {
	background: rgba(28, 127, 194, 0.05);
	border-bottom: 1px solid rgba(28, 127, 194, 0.1);
}

.question-text {
	font-family: 'Kanit', sans-serif;
	font-weight: 500;
	font-size: 1.1rem;
	color: var(--primary-color);
	margin: 0;
	flex: 1;
	line-height: 1.4;
	padding-right: 1rem;
}

.question-icon {
	width: 30px;
	height: 30px;
	background: var(--primary-color);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	transition: transform 0.2s ease, background-color 0.2s ease;
	flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .question-icon {
	transform: rotate(45deg);
	background: var(--secondary-color);
}

.faq-answer {
	border-top: none;
}

.answer-content {
	padding: 0 2rem 1.5rem 2rem;
}

.answer-text {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #444;
	margin: 0;
}

/* FAQ CTA */
.faq-cta {
	margin-top: 3rem;
}

.cta-card {
	background: linear-gradient(135deg, rgba(28, 127, 194, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
	padding: 3rem 2rem;
	border-radius: 20px;
	border: 1px solid rgba(28, 127, 194, 0.1);
	box-shadow: 0 6px 25px rgba(28, 127, 194, 0.08);
}

.faq-cta .cta-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1.7rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.faq-cta .cta-description {
	font-family: 'Prompt', sans-serif;
	font-size: 1.1rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.faq-cta .cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
	.faq-title {
		font-size: 1.8rem;
	}
	
	.faq-subtitle {
		font-size: 1rem;
	}
	
	.faq-question {
		padding: 1.2rem 1.5rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	
	.question-text {
		font-size: 1rem;
		padding-right: 0;
	}
	
	.question-icon {
		align-self: flex-end;
		margin-top: -2rem;
	}
	
	.answer-content {
		padding: 0 1.5rem 1.2rem 1.5rem;
	}
	
	.answer-text {
		font-size: 0.95rem;
	}
	
	.cta-card {
		padding: 2rem 1.5rem;
	}
	
	.faq-cta .cta-title {
		font-size: 1.4rem;
	}
	
	.faq-cta .cta-description {
		font-size: 1rem;
	}
	
	.faq-cta .cta-buttons {
		flex-direction: column;
		gap: 0.8rem;
	}
}

@media (max-width: 576px) {
	.faq-question {
		flex-direction: row;
		align-items: center;
		gap: 0;
	}
	
	.question-text {
		padding-right: 1rem;
	}
	
	.question-icon {
		align-self: auto;
		margin-top: 0;
	}
}

/* Section 11: Contact & Location */
.contact-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f8ff 100%);
}

.contact-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	color: var(--primary-color);
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.contact-subtitle {
	font-family: 'Prompt', sans-serif;
	font-size: 1.1rem;
	color: #666;
	line-height: 1.6;
	max-width: 500px;
	margin: 0 auto;
}

.contact-container {
	max-width: 100%;
}

/* Clinic Info */
.clinic-info-main {
	background: #ffffff;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 8px 30px rgba(28, 127, 194, 0.1);
	border: 1px solid rgba(28, 127, 194, 0.1);
}

.clinic-name {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.clinic-subtitle {
	font-family: 'Prompt', sans-serif;
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 2rem;
}

.info-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.opening-hours {
	padding: 1.5rem;
	background: linear-gradient(135deg, rgba(28, 127, 194, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
	border-radius: 12px;
	border: 1px solid rgba(28, 127, 194, 0.1);
}

.hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5rem;
}

.day {
	font-family: 'Prompt', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	color: #444;
}

.time {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	color: var(--primary-color);
}

.closed-info {
	text-align: center;
	margin-top: 0.5rem;
}

.closed-text {
	font-family: 'Prompt', sans-serif;
	font-size: 0.9rem;
	color: var(--secondary-color);
	font-style: italic;
}

.location-details {
	padding: 1.5rem;
	background: rgba(166, 203, 229, 0.1);
	border-radius: 12px;
	border-left: 4px solid var(--primary-color);
}

.location-text {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
	margin-bottom: 0.8rem;
}

.location-text:last-of-type {
	margin-bottom: 1rem;
}

.parking-info {
	display: flex;
	align-items: center;
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

.parking-icon {
	margin-right: 0.5rem;
	font-size: 1.2rem;
}

/* Map Section */
.map-section {
	height: 100%;
	display: flex;
	align-items: center;
}

/* Google Maps Container */
.google-map-container {
	position: relative;
	width: 100%;
	height: 400px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(44, 90, 160, 0.15);
}

.google-map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 15px;
}

/* Map Overlay Info */
.map-overlay {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 1rem 1.5rem;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	max-width: 250px;
	z-index: 10;
}

.map-info .clinic-name {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.map-info .clinic-address {
	font-size: 0.9rem;
	color: var(--dark-text);
	margin-bottom: 0.8rem;
	line-height: 1.4;
}

.map-info .btn {
	font-size: 0.8rem;
	padding: 0.4rem 0.8rem;
}

/* Responsive Map */
@media (max-width: 767.98px) {
	.google-map-container {
		height: 300px;
	}
	
	.map-overlay {
		position: static;
		margin-top: 1rem;
		max-width: 100%;
	}
}

.map-description {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	color: #666;
	margin-bottom: 1.5rem;
}

.map-btn {
	font-family: 'Kanit', sans-serif;
	font-weight: 500;
}

/* Contact Methods */
.contact-methods {
	background: #ffffff;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 6px 25px rgba(28, 127, 194, 0.08);
	border: 1px solid rgba(28, 127, 194, 0.08);
	margin-bottom: 2rem;
}

.methods-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1.8rem;
	color: var(--primary-color);
}

.contact-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	border: 1px solid rgba(28, 127, 194, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(28, 127, 194, 0.12);
}

.contact-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.icon-symbol {
	font-size: 2rem;
}

.contact-method {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--primary-color);
	margin-bottom: 0.8rem;
}

.contact-detail {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	color: #666;
	margin-bottom: 1.5rem;
	word-break: break-all;
}

/* Social Media */
.social-media {
	text-align: center;
}

.social-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--primary-color);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.social-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 1.5rem;
	background: #ffffff;
	border-radius: 20px;
	border: 2px solid rgba(28, 127, 194, 0.1);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	transition: all 0.3s ease;
	min-width: 140px;
	position: relative;
	overflow: hidden;
}

.social-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.social-link:hover::before {
	left: 100%;
}

.social-link:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(28, 127, 194, 0.15);
	text-decoration: none;
	border-color: var(--primary-color);
}

.social-icon {
	font-size: 2.5rem;
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	transition: all 0.3s ease;
}

.social-icon i {
	font-size: 1.8rem;
}

/* Platform specific colors */
.social-link.tiktok:hover .social-icon {
	background: linear-gradient(135deg, #000000, #ff0050);
	transform: scale(1.1);
}

.social-link.facebook:hover .social-icon {
	background: linear-gradient(135deg, #1877f2, #42a5f5);
	transform: scale(1.1);
}

.social-link.instagram:hover .social-icon {
	background: linear-gradient(135deg, #e4405f, #fd5949, #fccc63);
	transform: scale(1.1);
}

.social-link:hover .social-name {
	color: var(--secondary-color);
	transform: translateY(-2px);
}

/* Social Media Animation */
.social-icon {
	animation: socialFloat 3s ease-in-out infinite;
}

.social-link:nth-child(1) .social-icon {
	animation-delay: 0s;
}

.social-link:nth-child(2) .social-icon {
	animation-delay: 0.5s;
}

.social-link:nth-child(3) .social-icon {
	animation-delay: 1s;
}

@keyframes socialFloat {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-5px); }
}

/* Hover states pause animation */
.social-link:hover .social-icon {
	animation-play-state: paused;
}

.social-name {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--dark-text);
	transition: all 0.3s ease;
	margin-top: 0.5rem;
}

/* Company Info */
.company-info {
	text-align: center;
}

.company-card {
	background: rgba(28, 127, 194, 0.03);
	padding: 2rem;
	border-radius: 16px;
	border: 1px solid rgba(28, 127, 194, 0.1);
}

.company-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

.company-name {
	font-family: 'Kanit', sans-serif;
	font-weight: 500;
	font-size: 1.1rem;
	color: #444;
	margin-bottom: 1rem;
}

.company-address {
	font-family: 'Prompt', sans-serif;
	font-size: 1rem;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-title {
		font-size: 2rem;
	}
	
	.contact-subtitle {
		font-size: 1rem;
	}
	
	.clinic-info-main {
		padding: 2rem;
	}
	
	.clinic-name {
		font-size: 1.6rem;
	}
	
	.contact-methods {
		padding: 2rem;
	}
	
	.methods-title {
		font-size: 1.5rem;
	}
	
	.contact-card {
		padding: 1.5rem;
	}
	
	.contact-icon {
		width: 60px;
		height: 60px;
	}
	
	.icon-symbol {
		font-size: 1.8rem;
	}
	
	.map-placeholder {
		height: 250px;
	}
	
	.map-content {
		padding: 1.5rem;
	}
	
	.social-links {
		gap: 1rem;
	}
	
	.social-link {
		min-width: 100px;
		padding: 1.2rem;
	}
	
	.social-icon {
		font-size: 2rem;
	}
	
	.company-card {
		padding: 1.5rem;
	}
}

@media (max-width: 576px) {
	.hours-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.3rem;
	}
	
	.social-links {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	
	.social-link {
		width: 200px;
	}
}

/* Image Modal Styles */
.image-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(5px);
	animation: fadeIn 0.3s ease;
}

.modal-content {
	position: relative;
	margin: auto;
	padding: 20px;
	width: 90%;
	max-width: 1200px;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.modal-image {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.close-modal {
	position: absolute;
	top: 20px;
	right: 30px;
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	cursor: pointer;
	z-index: 10001;
	transition: all 0.3s ease;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.close-modal:hover {
	background-color: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.modal-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	pointer-events: none;
}

.nav-btn {
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: none;
	color: #fff;
	font-size: 2.5rem;
	padding: 15px 20px;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s ease;
	pointer-events: all;
	z-index: 10001;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-btn:hover {
	background-color: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.modal-caption {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	color: #fff;
	padding: 15px 25px;
	border-radius: 25px;
	font-family: 'Prompt', sans-serif;
	font-size: 1.1rem;
	text-align: center;
	max-width: 90%;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.modal-counter {
	font-size: 0.9rem;
	opacity: 0.8;
	color: var(--light-blue);
}

/* Gallery Image Hover Effects */
.result-image-card {
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

.result-image-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(28, 127, 194, 0.2);
}

.result-image-card:hover .result-overlay {
	opacity: 1;
}

.result-image-card:hover .result-image {
	transform: scale(1.05);
}

.result-image {
	transition: transform 0.3s ease;
	border-radius: 12px;
}

.result-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(28, 127, 194, 0.8), rgba(204, 62, 108, 0.8));
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 12px;
}

.result-text {
	font-family: 'Prompt', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	text-align: center;
	padding: 10px;
}

/* Modal Animations */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideIn {
	from { 
		opacity: 0;
		transform: scale(0.8);
	}
	to { 
		opacity: 1;
		transform: scale(1);
	}
}

.modal-image {
	animation: slideIn 0.3s ease;
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
	.modal-content {
		padding: 10px;
	}
	
	.close-modal {
		top: 10px;
		right: 15px;
		font-size: 2.5rem;
		width: 40px;
		height: 40px;
	}
	
	.nav-btn {
		font-size: 2rem;
		padding: 10px 15px;
		width: 50px;
		height: 50px;
	}
	
	.modal-nav {
		padding: 0 10px;
	}
	
	.modal-caption {
		bottom: 10px;
		padding: 10px 20px;
		font-size: 1rem;
		max-width: 95%;
	}
	
	.modal-image {
		max-height: 75vh;
	}
}

/* Contact Modal Styles */
.contact-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	animation: fadeIn 0.3s ease;
}

.contact-modal-content {
	position: relative;
	background-color: #fff;
	margin: 5% auto;
	padding: 0;
	width: 80%;
	max-width: 480px;
	max-height: 80vh;
	border-radius: 12px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	animation: slideInUp 0.3s ease;
}

.contact-modal-header {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	padding: 1.2rem;
	position: relative;
	text-align: center;
}

.contact-modal-title {
	margin: 0;
	font-family: 'Kanit', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
}

.close-contact-modal {
	position: absolute;
	top: 10px;
	right: 15px;
	color: white;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
}

.close-contact-modal:hover {
	background-color: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.contact-modal-body {
	padding: 1.2rem;
	max-height: 60vh;
	overflow-y: auto;
}

.contact-intro {
	text-align: center;
	margin-bottom: 1.2rem;
	padding: 0.8rem;
	background: rgba(28, 127, 194, 0.05);
	border-radius: 8px;
}

.contact-intro-text {
	font-family: 'Prompt', sans-serif;
	font-size: 0.9rem;
	color: var(--dark-text);
	margin: 0;
	line-height: 1.4;
}

.contact-options {
	display: grid;
	gap: 0.8rem;
	grid-template-columns: 1fr 1fr;
}

.contact-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.8rem;
	padding: 1.2rem 0.8rem;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.contact-option:hover {
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(28, 127, 194, 0.1);
}

.contact-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--primary-color), #1e6ab8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.1rem;
}


.facebook-icon {
	background: linear-gradient(135deg, #0084FF, #0066CC);
}

.contact-details {
	width: 100%;
}

.contact-method {
	font-family: 'Kanit', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark-text);
	margin: 0 0 0.2rem 0;
}

.contact-info {
	color: var(--light-text);
	margin: 0 0 0.6rem 0;
	font-size: 0.8rem;
}

.contact-btn {
	padding: 0.5rem 1.2rem;
	border-radius: 15px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	font-family: 'Prompt', sans-serif;
	font-size: 0.8rem;
	width: 100%;
	text-align: center;
}

.form-option {
	grid-column: 1 / -1;
}

.contact-form .form-group {
	margin-bottom: 0.8rem;
}

.contact-form .form-control {
	border: 1px solid #e9ecef;
	border-radius: 6px;
	padding: 0.6rem;
	font-family: 'Prompt', sans-serif;
	font-size: 0.8rem;
}

.contact-footer {
	text-align: center;
	margin-top: 1rem;
	padding: 0.8rem;
	background: #f8f9fa;
	border-radius: 8px;
}

.contact-hours h5 {
	font-family: 'Kanit', sans-serif;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.contact-hours p {
	margin: 0;
	color: var(--dark-text);
	font-family: 'Prompt', sans-serif;
	font-size: 0.8rem;
}

/* Modal Animations */
@keyframes slideInUp {
	from {
		transform: translateY(50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Mobile Responsive for Contact Modal */
@media (max-width: 991.98px) {
	.contact-options {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}
	
	.form-option {
		grid-column: 1;
	}
}

@media (max-width: 768px) {
	.contact-modal-content {
		margin: 5% auto;
		width: 90%;
		max-height: 85vh;
	}
	
	.contact-modal-header {
		padding: 1rem;
	}
	
	.contact-modal-title {
		font-size: 1.2rem;
	}
	
	.close-contact-modal {
		top: 8px;
		right: 12px;
		font-size: 1.8rem;
		width: 30px;
		height: 30px;
	}
	
	.contact-modal-body {
		padding: 1rem;
	}
	
	.contact-icon {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}
	
	.contact-option {
		padding: 1rem 0.8rem;
	}
}

@media (max-width: 576px) {
	.contact-modal-content {
		margin: 5% auto;
		width: 95%;
		max-height: 80vh;
	}
	
	.contact-modal-body {
		padding: 0.8rem;
	}
	
	.contact-intro {
		padding: 0.6rem;
		margin-bottom: 1rem;
	}
	
	.contact-option {
		padding: 0.8rem 0.6rem;
	}
}

/* Simple Device Section */
.simple-device-container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 3rem 2rem;
}

.device-image-wrapper {
  position: relative;
}

.device-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), rgba(28, 127, 194, 0.1));
  border-radius: 20px;
  z-index: -1;
}

.device-img {
  max-height: 500px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.device-img:hover {
  transform: scale(1.02);
}

.features-list {
  padding: 1rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44, 90, 160, 0.15);
}

.feature-item .feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.feature-item .feature-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-item .feature-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Modern Tech Section */
.modern-tech-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.modern-tech-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(44, 90, 160, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.tech-content-modern {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.tech-heading {
  font-family: 'Kanit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight-number {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.tech-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.advantage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44, 90, 160, 0.15);
}

.advantage-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.advantage-content h5 {
  font-family: 'Kanit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.advantage-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.tech-visual {
  position: relative;
}

.device-showcase {
  position: relative;
  text-align: center;
}

.showcase-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(44, 90, 160, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.showcase-image {
  position: relative;
  z-index: 2;
  max-height: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.showcase-image:hover {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.wavelength-display {
  text-align: center;
}

.wavelength-display .number {
  font-family: 'Kanit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  line-height: 1;
}

.wavelength-display .unit {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

.badge-label {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.3rem;
}

.floating-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(44, 90, 160, 0.95);
  color: white;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.stat-number {
  font-family: 'Kanit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.9;
}



.section-header {
  margin-bottom: 3rem;
}

.section-badge-center {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.gallery-title {
  font-family: 'Kanit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.gallery-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
  .tech-heading {
    font-size: 2rem;
  }
  
  .tech-visual {
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .advantages-list {
    margin-top: 2rem;
  }
}

/* Desktop responsive improvements */
@media (min-width: 1200px) {
	.contact-modal-content {
		max-width: 500px;
	}
}/ *   P r o m o t i o n   I m a g e   S t y l i n g   * / 
 . p r o m o t i o n - i m a g e   { 
     m a r g i n - b o t t o m :   1 . 5 r e m ; 
     b o r d e r - r a d i u s :   1 5 p x ; 
     o v e r f l o w :   h i d d e n ; 
     b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 } 
 
 . p r o m o t i o n - b a n n e r   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   2 0 0 p x ; 
     o b j e c t - f i t :   c o v e r ; 
     t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 } 
 
 . p r o m o t i o n - b a n n e r : h o v e r   { 
     t r a n s f o r m :   s c a l e ( 1 . 0 2 ) ; 
 } 
 
 . p a c k a g e - o f f e r   . p r o m o t i o n - c o n t e n t   { 
     p a d d i n g - t o p :   0 ; 
 } 
 
 
 
 / *   E n h a n c e d   R o u n d e d   C o r n e r s   f o r   P r o m o t i o n   * / 
 . p r o m o t i o n - i m a g e   { 
     b o r d e r - r a d i u s :   2 5 p x   ! i m p o r t a n t ; 
 } 
 
 . p r o m o t i o n - b a n n e r   { 
     b o r d e r - r a d i u s :   2 5 p x   ! i m p o r t a n t ; 
 } 
 
 . p a c k a g e - o f f e r   { 
     b o r d e r - r a d i u s :   2 5 p x   ! i m p o r t a n t ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 
 
 
 / *   E n h a n c e d   D o c t o r   P h o t o   Q u a l i t y   * / 
 . d o c t o r - p h o t o   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   a u t o ; 
     o b j e c t - f i t :   c o v e r ; 
     i m a g e - r e n d e r i n g :   - w e b k i t - o p t i m i z e - c o n t r a s t ; 
     i m a g e - r e n d e r i n g :   c r i s p - e d g e s ; 
     f i l t e r :   c o n t r a s t ( 1 . 0 5 )   b r i g h t n e s s ( 1 . 0 2 )   s a t u r a t e ( 1 . 0 5 ) ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . d o c t o r - p h o t o : h o v e r   { 
     f i l t e r :   c o n t r a s t ( 1 . 1 )   b r i g h t n e s s ( 1 . 0 5 )   s a t u r a t e ( 1 . 1 ) ; 
     t r a n s f o r m :   s c a l e ( 1 . 0 2 ) ; 
 } 
 
 . d o c t o r - i m a g e - f r a m e   { 
     b o r d e r - r a d i u s :   2 0 p x ; 
     o v e r f l o w :   h i d d e n ; 
     b o x - s h a d o w :   0   1 5 p x   4 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 
 
 / *   P r e m i u m   G o l d   A c c e n t s   * / 
 : r o o t   { 
     - - g o l d - g r a d i e n t :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # F F D 7 0 0 ,   # F F A 5 0 0 ,   # F F 8 C 0 0 ) ; 
     - - g o l d - s h i m m e r :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   # F F D 7 0 0 ,   # F F E D 4 E ,   # F F D 7 0 0 ,   # F F E D 4 E ) ; 
     - - g o l d - s h a d o w :   0   4 p x   2 0 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 3 ) ; 
 } 
 
 / *   G o l d   B o r d e r s   a n d   A c c e n t s   * / 
 . m o d e r n - c a r d , 
 . p r o m o t i o n - c a r d , 
 . d o c t o r - i n f o - c a r d , 
 . t r u s t - c a r d   { 
     b o r d e r :   2 p x   s o l i d   t r a n s p a r e n t ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( w h i t e ,   w h i t e )   p a d d i n g - b o x , 
                             v a r ( - - g o l d - g r a d i e n t )   b o r d e r - b o x ; 
     b o x - s h a d o w :   v a r ( - - g o l d - s h a d o w ) ; 
 } 
 
 / *   G o l d   H o v e r   E f f e c t s   * / 
 . m o d e r n - c a r d : h o v e r , 
 . p r o m o t i o n - c a r d : h o v e r , 
 . t r u s t - c a r d : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
     b o x - s h a d o w :   0   8 p x   3 0 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 4 ) ; 
 } 
 
 / *   P r e m i u m   S e c t i o n   H e a d e r s   * / 
 . s e c t i o n - h e a d e r   h 2 , 
 . s e c t i o n - t i t l e , 
 . t e c h - h e a d i n g   { 
     p o s i t i o n :   r e l a t i v e ; 
 } 
 
 . s e c t i o n - h e a d e r   h 2 : : a f t e r , 
 . s e c t i o n - t i t l e : : a f t e r   { 
     c o n t e n t :   ' ' ; 
     p o s i t i o n :   a b s o l u t e ; 
     b o t t o m :   - 1 0 p x ; 
     l e f t :   5 0 % ; 
     t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ; 
     w i d t h :   8 0 p x ; 
     h e i g h t :   3 p x ; 
     b a c k g r o u n d :   v a r ( - - g o l d - g r a d i e n t ) ; 
     b o r d e r - r a d i u s :   2 p x ; 
 } 
 
 / *   G o l d   T e x t   H i g h l i g h t s   * / 
 . h i g h l i g h t , 
 . h i g h l i g h t - n u m b e r , 
 . p r i c e - h i g h l i g h t   { 
     b a c k g r o u n d :   v a r ( - - g o l d - g r a d i e n t ) ; 
     - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ; 
     - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ; 
     b a c k g r o u n d - c l i p :   t e x t ; 
     f o n t - w e i g h t :   7 0 0 ; 
 } 
 
 / *   P r e m i u m   B u t t o n s   * / 
 . b t n - p r i m a r y   { 
     b a c k g r o u n d :   v a r ( - - g o l d - g r a d i e n t ) ; 
     b o r d e r :   n o n e ; 
     c o l o r :   w h i t e ; 
     b o x - s h a d o w :   v a r ( - - g o l d - s h a d o w ) ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . b t n - p r i m a r y : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
     b o x - s h a d o w :   0   6 p x   2 5 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 5 ) ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # F F A 5 0 0 ,   # F F 8 C 0 0 ,   # F F D 7 0 0 ) ; 
 } 
 
 / *   G o l d   A c c e n t e d   I c o n s   * / 
 . f e a t u r e - i c o n , 
 . a d v a n t a g e - i c o n   { 
     b a c k g r o u n d :   v a r ( - - g o l d - g r a d i e n t )   ! i m p o r t a n t ; 
     b o x - s h a d o w :   v a r ( - - g o l d - s h a d o w ) ; 
 } 
 
 / *   P r e m i u m   D o c t o r   B a d g e   * / 
 . d o c t o r - b a d g e   { 
     b a c k g r o u n d :   v a r ( - - g o l d - g r a d i e n t ) ; 
     b o x - s h a d o w :   v a r ( - - g o l d - s h a d o w ) ; 
 } 
 
 / *   G o l d   S h i m m e r   A n i m a t i o n   * / 
 @ k e y f r a m e s   g o l d S h i m m e r   { 
     0 %   {   b a c k g r o u n d - p o s i t i o n :   - 2 0 0 %   0 ;   } 
     1 0 0 %   {   b a c k g r o u n d - p o s i t i o n :   2 0 0 %   0 ;   } 
 } 
 
 . s h i m m e r - g o l d   { 
     b a c k g r o u n d :   v a r ( - - g o l d - s h i m m e r ) ; 
     b a c k g r o u n d - s i z e :   2 0 0 %   1 0 0 % ; 
     a n i m a t i o n :   g o l d S h i m m e r   3 s   i n f i n i t e ; 
 } 
 
 / *   P r e m i u m   F l o a t i n g   E l e m e n t s   * / 
 . f l o a t i n g - b a d g e   { 
     b a c k g r o u n d :   v a r ( - - g o l d - g r a d i e n t )   ! i m p o r t a n t ; 
     c o l o r :   w h i t e   ! i m p o r t a n t ; 
     b o x - s h a d o w :   v a r ( - - g o l d - s h a d o w ) ; 
 } 
 
 . f l o a t i n g - b a d g e   . n u m b e r   { 
     c o l o r :   w h i t e   ! i m p o r t a n t ; 
 } 
 
 / *   G o l d   S e p a r a t o r   L i n e s   * / 
 . p r e m i u m - s e p a r a t o r   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   2 p x ; 
     b a c k g r o u n d :   v a r ( - - g o l d - g r a d i e n t ) ; 
     m a r g i n :   2 r e m   0 ; 
     b o r d e r - r a d i u s :   1 p x ; 
 } 
 
 / *   E n h a n c e d   T i m e l i n e   w i t h   G o l d   * / 
 . t i m e l i n e - m a r k e r   { 
     b o r d e r :   3 p x   s o l i d   # F F D 7 0 0 ; 
     b o x - s h a d o w :   v a r ( - - g o l d - s h a d o w ) ; 
 } 
 
 . t i m e l i n e - m a r k e r . i m m e d i a t e   { 
     b a c k g r o u n d :   v a r ( - - g o l d - g r a d i e n t ) ; 
 } 
 
 / *   G o l d   N a v b a r   A c c e n t s   * / 
 . n a v b a r   { 
     b o r d e r - b o t t o m :   2 p x   s o l i d   t r a n s p a r e n t ; 
     b o r d e r - i m a g e :   v a r ( - - g o l d - g r a d i e n t )   1 ; 
 } 
 
 . n a v b a r - b r a n d : h o v e r , 
 . n a v - l i n k : h o v e r   { 
     c o l o r :   # F F D 7 0 0   ! i m p o r t a n t ; 
     t e x t - s h a d o w :   0   0   1 0 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 5 ) ; 
 } 
 
 / *   P r e m i u m   C o n t a c t   S e c t i o n   * / 
 . c o n t a c t - o p t i o n : h o v e r   { 
     b o r d e r :   2 p x   s o l i d   t r a n s p a r e n t ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( w h i t e ,   w h i t e )   p a d d i n g - b o x , 
                             v a r ( - - g o l d - g r a d i e n t )   b o r d e r - b o x ; 
 } 
 
 / *   G o l d   E n h a n c e d   P r o m o t i o n   * / 
 . p r o m o t i o n - b a d g e   { 
     b a c k g r o u n d :   v a r ( - - g o l d - g r a d i e n t )   ! i m p o r t a n t ; 
 } 
 
 . s p e c i a l - p r i c e   { 
     c o l o r :   # F F D 7 0 0 ; 
     t e x t - s h a d o w :   0   0   1 0 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 5 ) ; 
 } 
 
 
 
 / *   A d d i t i o n a l   G o l d   P r e m i u m   E f f e c t s   * / 
 . c e r t i f i c a t i o n - c a r d   { 
     b o r d e r :   2 p x   s o l i d   t r a n s p a r e n t ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( w h i t e ,   w h i t e )   p a d d i n g - b o x , 
                             v a r ( - - g o l d - g r a d i e n t )   b o r d e r - b o x ; 
     p o s i t i o n :   r e l a t i v e ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 
 . c e r t i f i c a t i o n - c a r d : : b e f o r e   { 
     c o n t e n t :   ' ' ; 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   0 ; 
     l e f t :   - 1 0 0 % ; 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   t r a n s p a r e n t ,   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 1 ) ,   t r a n s p a r e n t ) ; 
     t r a n s i t i o n :   l e f t   0 . 5 s   e a s e ; 
 } 
 
 . c e r t i f i c a t i o n - c a r d : h o v e r : : b e f o r e   { 
     l e f t :   1 0 0 % ; 
 } 
 
 / *   G o l d   E n h a n c e d   F e a t u r e s   * / 
 . f e a t u r e - i t e m : h o v e r   { 
     b o r d e r - l e f t :   4 p x   s o l i d   # F F D 7 0 0 ; 
     b o x - s h a d o w :   0   8 p x   3 0 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 2 ) ; 
 } 
 
 / *   P r e m i u m   R e v i e w   C a r d s   * / 
 . r e v i e w - c a r d   { 
     b o r d e r :   1 p x   s o l i d   t r a n s p a r e n t ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( w h i t e ,   w h i t e )   p a d d i n g - b o x , 
                             v a r ( - - g o l d - g r a d i e n t )   b o r d e r - b o x ; 
 } 
 
 / *   G o l d   E n h a n c e d   D e v i c e   I m a g e   * / 
 . d e v i c e - i m g : h o v e r , 
 . s h o w c a s e - i m a g e : h o v e r   { 
     b o x - s h a d o w :   0   2 0 p x   6 0 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 3 ) ; 
 } 
 
 / *   P r e m i u m   R e s u l t   G a l l e r y   * / 
 . r e s u l t - i m a g e - c a r d : h o v e r   { 
     b o r d e r :   3 p x   s o l i d   # F F D 7 0 0 ; 
     b o x - s h a d o w :   0   1 5 p x   4 0 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 4 ) ; 
 } 
 
 / *   G o l d   W a v e l e n g t h   D i s p l a y   * / 
 . w a v e l e n g t h - d i s p l a y   . n u m b e r   { 
     b a c k g r o u n d :   v a r ( - - g o l d - g r a d i e n t ) ; 
     - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ; 
     - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ; 
     b a c k g r o u n d - c l i p :   t e x t ; 
 } 
 
 / *   P r e m i u m   F A Q   S e c t i o n   * / 
 . f a q - i t e m : h o v e r   { 
     b o r d e r - l e f t :   4 p x   s o l i d   # F F D 7 0 0 ; 
 } 
 
 / *   G o l d   E n h a n c e d   C o n t a c t   S e c t i o n   * / 
 . c o n t a c t - c a r d : h o v e r   { 
     b o r d e r :   2 p x   s o l i d   # F F D 7 0 0 ; 
     b o x - s h a d o w :   v a r ( - - g o l d - s h a d o w ) ; 
 } 
 
 
 
 / *   M o r e   V i s i b l e   G o l d   E f f e c t s   * / 
 . n a v b a r   { 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 2 c 5 a a 0   0 % ,   # 1 c 7 f c 2   5 0 % ,   # F F D 7 0 0   1 0 0 % )   ! i m p o r t a n t ; 
 } 
 
 . h e r o - s e c t i o n   { 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 4 4 ,   9 0 ,   1 6 0 ,   0 . 9 ) ,   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 1 ) ) ,   
                             u r l ( ' a s s e t s / i m a g e s / h e r o - b a c k g r o u n d . j p g ' )   c e n t e r / c o v e r   ! i m p o r t a n t ; 
 } 
 
 . s e c t i o n - h e a d e r   h 2   { 
     c o l o r :   # 2 c 5 a a 0 ; 
     t e x t - s h a d o w :   0   0   2 0 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 5 ) ; 
 } 
 
 . h i g h l i g h t , 
 . h i g h l i g h t - n u m b e r   { 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   # F F D 7 0 0 ,   # F F A 5 0 0 ,   # F F D 7 0 0 ,   # F F A 5 0 0 ) ; 
     b a c k g r o u n d - s i z e :   4 0 0 %   4 0 0 % ; 
     a n i m a t i o n :   g o l d S h i m m e r   2 s   e a s e - i n - o u t   i n f i n i t e ; 
     - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ; 
     - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ; 
     b a c k g r o u n d - c l i p :   t e x t ; 
     f o n t - w e i g h t :   8 0 0 ; 
 } 
 
 @ k e y f r a m e s   g o l d S h i m m e r   { 
     0 % ,   1 0 0 %   {   b a c k g r o u n d - p o s i t i o n :   0 %   5 0 % ;   } 
     5 0 %   {   b a c k g r o u n d - p o s i t i o n :   1 0 0 %   5 0 % ;   } 
 } 
 
 . m o d e r n - c a r d , 
 . p r o m o t i o n - c a r d , 
 . f e a t u r e - i t e m , 
 . d o c t o r - i n f o - c a r d   { 
     b o r d e r :   3 p x   s o l i d   # F F D 7 0 0   ! i m p o r t a n t ; 
     b o x - s h a d o w :   0   0   3 0 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 5 )   ! i m p o r t a n t ; 
 } 
 
 . b t n - p r i m a r y   { 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   # F F D 7 0 0 ,   # F F A 5 0 0 )   ! i m p o r t a n t ; 
     b o r d e r :   2 p x   s o l i d   # F F D 7 0 0   ! i m p o r t a n t ; 
     b o x - s h a d o w :   0   0   2 0 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 6 )   ! i m p o r t a n t ; 
     t e x t - s h a d o w :   0   1 p x   2 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 } 
 
 . f e a t u r e - i c o n , 
 . a d v a n t a g e - i c o n   { 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   # F F D 7 0 0 ,   # F F A 5 0 0 )   ! i m p o r t a n t ; 
     b o x - s h a d o w :   0   0   1 5 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 7 )   ! i m p o r t a n t ; 
 } 
 
 / *   G o l d   B o r d e r   A n i m a t i o n   * / 
 @ k e y f r a m e s   g o l d B o r d e r   { 
     0 % ,   1 0 0 %   {   b o r d e r - c o l o r :   # F F D 7 0 0 ;   } 
     5 0 %   {   b o r d e r - c o l o r :   # F F A 5 0 0 ;   } 
 } 
 
 . p r e m i u m - b o r d e r   { 
     a n i m a t i o n :   g o l d B o r d e r   2 s   e a s e - i n - o u t   i n f i n i t e ; 
 } 
 
 

/* ============================================
   Image Lightbox Modal Styles
   ============================================ */

/* Clickable Image Cursor */
.clickable-image {
cursor: pointer;
position: relative;
overflow: hidden;
}

.clickable-image:hover {
transform: scale(1.02);
transition: transform 0.3s ease;
}

/* Zoom Icon */
.zoom-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 2rem;
color: rgba(255, 255, 255, 0);
transition: all 0.3s ease;
pointer-events: none;
z-index: 10;
}

.clickable-image:hover .zoom-icon {
color: rgba(255, 255, 255, 0.9);
font-size: 2.5rem;
}

.clickable-image:hover .image-overlay,
.clickable-image:hover .small-overlay {
background: rgba(44, 90, 160, 0.7);
}

/* Lightbox Modal */
.lightbox-modal {
display: none;
position: fixed;
z-index: 9999;
padding-top: 60px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.95);
animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

/* Close Button */
.lightbox-close {
position: absolute;
top: 20px;
right: 40px;
color: #ffffff;
font-size: 50px;
font-weight: 300;
transition: all 0.3s ease;
cursor: pointer;
z-index: 10000;
line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
color: #4a90e2;
transform: rotate(90deg);
}

/* Lightbox Content */
.lightbox-content {
margin: auto;
display: block;
width: 90%;
max-width: 1200px;
max-height: 80vh;
object-fit: contain;
animation: zoomIn 0.4s ease;
border-radius: 10px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

@keyframes zoomIn {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

/* Caption */
.lightbox-caption {
margin: auto;
display: block;
width: 90%;
max-width: 1200px;
text-align: center;
color: #ffffff;
padding: 20px 0;
font-family: 'Prompt', sans-serif;
font-size: 1.2rem;
font-weight: 500;
animation: fadeIn 0.5s ease 0.2s both;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
.lightbox-content {
width: 95%;
max-height: 70vh;
}

.lightbox-close {
top: 10px;
right: 20px;
font-size: 40px;
}

.lightbox-caption {
font-size: 1rem;
padding: 15px 0;
}

.zoom-icon {
font-size: 1.5rem;
}

.clickable-image:hover .zoom-icon {
font-size: 1.8rem;
}
}

@media (max-width: 480px) {
.lightbox-modal {
padding-top: 40px;
}

.lightbox-content {
width: 100%;
max-height: 60vh;
border-radius: 0;
}

.lightbox-close {
top: 5px;
right: 15px;
font-size: 35px;
}

.lightbox-caption {
font-size: 0.9rem;
padding: 10px;
}
}
