        
		
  @font-face {
  font-family: 'SukhumvitSet-Text';
  src: url('https://rhinoplasty-thailand.com/fonts/SukhumvitSet-Text.eot'); /* IE9 Compat Modes */
  src: url('https://rhinoplasty-thailand.com/fonts/SukhumvitSet-Text.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('https://rhinoplasty-thailand.com/fonts/SukhumvitSet-Text.woff2') format('woff2'), /* Modern Browsers */
       url('https://rhinoplasty-thailand.com/fonts/SukhumvitSet-Text.woff') format('woff'), 
       url('https://rhinoplasty-thailand.com/fonts/SukhumvitSet-Text.ttf') format('truetype'), 
       url('https://rhinoplasty-thailand.com/fonts/SukhumvitSet-Text.svg#SukhumvitSet-Text') format('svg'); /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* ✅ 建议加上提升性能 */
}
		
		
		
		
		/* 重置样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'sukhumvit', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #4A235A; /* 深紫色 */
            --secondary: #8E44AD; /* 中等紫色 */
            --accent: #D4AF37; /* 金色 */
            --light: #fddef2; /* 新的浅粉色背景 */
            --dark: #8d046b; /* 深紫色背景 */
            --text: #333333;
        }

        body {
            color: var(--text);
            background-color: #ffffff;
            line-height: 1.6;
        }




        a {
            text-decoration: none;
            color: inherit;
        }


a:hover, 
.nav-menu a:hover, 
.footer-col a:hover, 
.service-link:hover, 
.contact-item a:hover {
    color: var(--primary) !important;
}


        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

		

        /* 顶部导航栏 */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            margin-right: 10px;
        }

        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 600;
        }

        .logo span {
            color: var(--secondary);
        }

        /* 导航菜单 */
        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-menu li {
            position: relative;
            margin-left: 25px;
        }

        .nav-menu > li > a {
            font-weight: 500;
            padding: 10px 0;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }

        .nav-menu > li > a:hover {
            color: var(--primary);
        }

        .nav-menu > li > a i {
            margin-left: 5px;
            font-size: 0.8rem;
        }

        /* 下拉菜单 */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 350px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
            border-radius: 5px;
            z-index: 100;
        }

        .dropdown li {
            margin: 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown li:last-child {
            border-bottom: none;
        }

        .dropdown li a {
            display: block;
            padding: 12px 15px;
            transition: all 0.3s;
        }

        .dropdown li a:hover {
            background-color: var(--light);
            color: var(--primary);
        }

        .nav-menu li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* 移动端菜单按钮 */
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* 英雄区域 - 已添加背景图片 */
        .hero {
            background: 
                linear-gradient(135deg, rgba(74, 35, 90, 0), rgba(142, 68, 173, 0)),
                url('https://rhinoplasty-thailand.com/img/yoskarn-main-bg.jpg') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 35px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #c19b2a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* 服务区域 */
        .services {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .service-content p {
            color: #666;
            margin-bottom: 15px;
        }

        .service-link {
            color: var(--secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        .service-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* 关于我们区域 */
        .about {
            background-color: var(--light);
            padding: 80px 0;
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-content {
            flex: 1;
        }

        .about-content h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 20px;
            color: #555;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .feature {
            display: flex;
            align-items: center;
            width: calc(50% - 10px);
        }

        .feature i {
            background: var(--secondary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* 医生团队区域 */
        .doctors {
            padding: 80px 0;
        }

        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .doctor-card {
            text-align: center;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .doctor-card:hover {
            transform: translateY(-10px);
        }

        .doctor-img {
            height: 250px;
            overflow: hidden;
        }

        .doctor-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .doctor-info {
            padding: 20px;
        }

        .doctor-info h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .doctor-info p {
            color: var(--secondary);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .doctor-info .specialty {
            color: #666;
            font-size: 0.9rem;
        }

        /* 联系区域 */
        .contact {
            padding: 80px 0;
            background-color: var(--light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
        }

        .contact-item i {
            background: white;
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .contact-text h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* 页脚 */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary);
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .about-img, .about-content {
                flex: none;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 30px;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
                transition: left 0.3s;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 0 0 20px 0;
                width: 100%;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                margin-top: 10px;
                display: none;
            }

            .nav-menu li:hover .dropdown {
                display: block;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .feature {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 60px 0;
            }

            .services, .about, .doctors, .contact {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .service-card {
                margin-bottom: 20px;
            }
        }
   /* Services */
.services { padding:50px 20px; text-align:center; }
.service-cards { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin-top:30px; }
.card { background:#fff; padding:20px; border-radius:10px; width:300px; box-shadow:0 4px 8px rgba(0,0,0,0.1); }
.card img { width:100%; border-radius:10px; }

/* About */
.about { padding:50px 20px; background:#eee; text-align:center; }

/* Contact Form 弹窗 */
.contact-form {
  position: fixed;
  bottom: -100%;
  right: 20px;
  width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: bottom 0.5s;
  z-index: 1003;
}
.contact-form.active { bottom: 20px; }
.contact-form h2 { margin-top: 0; font-size: 18px; text-align: center; color: #3a0f5c; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
.contact-form button {
  width: 100%;
  padding: 10px;
  background: #3a0f5c;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #562d82;
}
.contact-form #closeForm {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #666;
}

/* Floating Icon */
.contact-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #b48ad6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s;
}
.contact-icon:hover { transform: scale(1.1); }
.contact-icon img { width: 24px; height: 24px; }