:root {
--qt-primary: #C9A96E;
--qt-secondary: #8B1A1A;
--qt-accent: #E8C547;
--qt-text: #1A1714;
--qt-text-secondary: #6B6560;
--qt-bg: #FAF8F5;
--qt-bg-dark: #1A1714;
--qt-border: #D4C9B8;
--qt-shadow: rgba(26, 23, 20, 0.08);
--qt-gradient-start: #C9A96E;
--qt-gradient-end: #8B1A1A;
}

*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html {
scroll-behavior: smooth;
font-size: 16px;
}

body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
color: var(--qt-text);
background-color: var(--qt-bg);
line-height: 1.7;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}

.qt-no-scroll {
overflow: hidden;
}

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

a {
color: var(--qt-primary);
text-decoration: none;
transition: color 0.3s ease;
}

a:hover {
color: var(--qt-secondary);
}

::selection {
background: var(--qt-bg-dark);
color: #fff;
}

.qt-hollow-text {
background: linear-gradient(135deg, var(--qt-gradient-start), var(--qt-gradient-end));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}

.qt-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.75rem;
border-radius: 6px;
font-weight: 600;
font-size: 0.9375rem;
letter-spacing: 0.02em;
text-transform: uppercase;
border: 2px solid transparent;
cursor: pointer;
transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
position: relative;
overflow: hidden;
}

.qt-btn-primary {
background: linear-gradient(135deg, var(--qt-primary), var(--qt-secondary));
color: #fff;
border-color: var(--qt-primary);
}

.qt-btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
color: #fff;
}

.qt-btn-outline {
background: transparent;
color: var(--qt-text);
border-color: var(--qt-border);
}

.qt-btn-outline:hover {
border-color: var(--qt-primary);
color: var(--qt-primary);
background: rgba(201, 169, 110, 0.05);
}

.qt-btn-accent {
background: var(--qt-accent);
color: var(--qt-bg-dark);
border-color: var(--qt-accent);
}

.qt-btn-accent:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(232, 197, 71, 0.35);
color: var(--qt-bg-dark);
}

.qt-btn-outline-light {
background: transparent;
color: #fff;
border-color: rgba(255, 255, 255, 0.4);
}

.qt-btn-outline-light:hover {
border-color: #fff;
background: rgba(255, 255, 255, 0.1);
color: #fff;
}

.qt-btn-sm {
padding: 0.5rem 1.25rem;
font-size: 0.8125rem;
}

.qt-btn-lg {
padding: 1rem 2.25rem;
font-size: 1.0625rem;
}

.qt-btn-block {
width: 100%;
justify-content: center;
}

.qt-brushed-metal {
background:
repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0px, rgba(0, 0, 0, 0.02) 1px, transparent 2px),
linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 50%, rgba(0, 0, 0, 0.1));
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.breathe-lg {
padding-top: 15vh;
padding-bottom: 15vh;
}

.breathe-md {
padding-top: 10vh;
padding-bottom: 10vh;
}

.breathe-sm {
padding-top: 5vh;
padding-bottom: 5vh;
}

.qt-stagger {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease, transform 0.6s ease;
transition-delay: calc(var(--i, 0) * 0.15s);
}

.qt-stagger.qt-animated {
opacity: 1;
transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
.qt-stagger {
opacity: 1;
transform: none;
transition: none;
}
}

.qt-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
padding: 1.25rem 0;
}

.qt-header-scrolled {
background: rgba(250, 248, 245, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
padding: 0.75rem 0;
box-shadow: 0 1px 20px var(--qt-shadow);
}

.qt-header-inner {
position: relative;
}

.qt-header-content {
display: flex;
align-items: center;
justify-content: space-between;
}

.qt-logo-link {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
}

.qt-logo-img {
height: 40px;
width: auto;
}

.qt-logo-text {
font-size: 1.25rem;
font-weight: 700;
color: var(--qt-text);
letter-spacing: 0.02em;
}

.qt-header-scrolled .qt-logo-text {
color: var(--qt-text);
}

.qt-nav-desktop {
display: block;
}

.qt-nav-list {
display: flex;
align-items: center;
gap: 2rem;
list-style: none;
margin: 0;
padding: 0;
}

.qt-nav-link {
color: var(--qt-text-secondary);
font-size: 0.9375rem;
font-weight: 500;
text-decoration: none;
position: relative;
padding: 0.25rem 0;
transition: color 0.3s ease;
}

.qt-nav-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--qt-primary);
transition: width 0.3s ease;
}

.qt-nav-link:hover,
.qt-nav-active .qt-nav-link {
color: var(--qt-primary);
}

.qt-nav-link:hover::after,
.qt-nav-active .qt-nav-link::after {
width: 100%;
}

.qt-header-actions {
display: flex;
align-items: center;
gap: 1rem;
}

.qt-phone-link {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--qt-primary);
font-weight: 600;
font-size: 0.9375rem;
text-decoration: none;
}

.qt-phone-link:hover {
color: var(--qt-secondary);
}

.qt-hamburger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
z-index: 1001;
}

.qt-hamburger span {
display: block;
width: 24px;
height: 2px;
background: var(--qt-text);
transition: all 0.3s ease;
border-radius: 2px;
}

.qt-hamburger-active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.qt-hamburger-active span:nth-child(2) {
opacity: 0;
}

.qt-hamburger-active span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}

.qt-mobile-overlay {
position: fixed;
inset: 0;
background: rgba(26, 23, 20, 0.6);
backdrop-filter: blur(10px);
z-index: 999;
opacity: 0;
visibility: hidden;
transition: all 0.4s ease;
}

.qt-overlay-active {
opacity: 1;
visibility: visible;
}

.qt-mobile-menu {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.9);
background: var(--qt-bg);
border-radius: 20px;
padding: 3rem 2rem;
width: 90%;
max-width: 360px;
text-align: center;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.qt-overlay-active .qt-mobile-menu {
transform: translate(-50%, -50%) scale(1);
}

.qt-mobile-logo img {
height: 48px;
margin: 0 auto 2rem;
}

.qt-mobile-nav {
list-style: none;
padding: 0;
margin: 0 0 2rem;
}

.qt-mobile-nav li {
margin-bottom: 0.5rem;
}

.qt-mobile-nav a {
display: block;
padding: 0.875rem;
color: var(--qt-text);
font-size: 1.125rem;
font-weight: 500;
border-radius: 10px;
transition: all 0.3s ease;
}

.qt-mobile-nav a:hover,
.qt-mobile-active a {
background: rgba(201, 169, 110, 0.1);
color: var(--qt-primary);
}

.qt-mobile-phone {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 1rem;
background: linear-gradient(135deg, var(--qt-primary), var(--qt-secondary));
color: #fff;
border-radius: 10px;
font-weight: 600;
}

@media (max-width: 767.98px) {
.qt-nav-desktop {
display: none;
}
.qt-phone-link span {
display: none;
}
.qt-hamburger {
display: flex;
}
}

.qt-hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
}

.qt-hero-bg {
position: absolute;
inset: 0;
background: linear-gradient(135deg, var(--qt-bg-dark) 0%, #2a2118 50%, #1a1210 100%);
}

.qt-hero-overlay {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 60%),
radial-gradient(ellipse at 80% 20%, rgba(139, 26, 26, 0.1) 0%, transparent 50%);
}

.qt-hero-content {
position: relative;
z-index: 2;
padding: 8rem 0 4rem;
}

.qt-hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1.25rem;
background: rgba(201, 169, 110, 0.1);
border: 1px solid rgba(201, 169, 110, 0.2);
border-radius: 50px;
color: var(--qt-primary);
font-size: 0.8125rem;
font-weight: 500;
letter-spacing: 0.05em;
margin-bottom: 2rem;
}

.qt-hero-badge-dot {
width: 6px;
height: 6px;
background: var(--qt-accent);
border-radius: 50%;
animation: qtPulse 2s ease infinite;
}

@keyframes qtPulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}

.qt-hero-title {
font-size: clamp(2.5rem, 6vw, 5rem);
font-weight: 800;
line-height: 1.15;
margin-bottom: 1.5rem;
color: #fff;
}

.qt-hero-title .qt-hollow-text {
background: linear-gradient(135deg, var(--qt-primary), var(--qt-accent), var(--qt-primary));
background-size: 200% 200%;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
animation: qtGradientShift 6s ease infinite;
}

@keyframes qtGradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

.qt-hero-subtitle {
font-size: clamp(1rem, 2vw, 1.25rem);
color: rgba(255, 255, 255, 0.7);
max-width: 600px;
margin-bottom: 2.5rem;
line-height: 1.8;
}

.qt-hero-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 3rem;
}

.qt-hero-actions .qt-btn-outline {
color: rgba(255, 255, 255, 0.8);
border-color: rgba(255, 255, 255, 0.3);
}

.qt-hero-actions .qt-btn-outline:hover {
color: #fff;
border-color: var(--qt-primary);
}

.qt-hero-terminal {
background: #0a0a0a;
border-radius: 12px;
overflow: hidden;
max-width: 560px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
transition: all 0.4s ease;
}

.qt-terminal-hidden {
opacity: 0;
transform: translateY(20px);
pointer-events: none;
height: 0;
margin: 0;
overflow: hidden;
}

.qt-terminal-header {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1rem;
background: #1a1a1a;
}

.qt-terminal-dot {
width: 10px;
height: 10px;
border-radius: 50%;
}

.qt-dot-red { background: #ff5f57; }
.qt-dot-yellow { background: #febc2e; }
.qt-dot-green { background: #28c840; }

.qt-terminal-title {
flex: 1;
text-align: center;
color: #666;
font-size: 0.75rem;
font-family: monospace;
}

.qt-terminal-close {
background: none;
border: none;
color: #666;
cursor: pointer;
padding: 2px;
font-size: 0.875rem;
}

.qt-terminal-close:hover {
color: #fff;
}

.qt-terminal-body {
padding: 1.25rem 1.5rem;
font-family: "SF Mono", "Fira Code", monospace;
font-size: 0.875rem;
color: #22c55e;
min-height: 60px;
}

.qt-terminal-prompt {
color: var(--qt-primary);
margin-right: 0.5rem;
}

.qt-terminal-cursor {
animation: qtBlink 1s step-end infinite;
color: #22c55e;
}

@keyframes qtBlink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}

.qt-hero-scroll {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
color: rgba(255, 255, 255, 0.4);
font-size: 0.75rem;
letter-spacing: 0.1em;
}

.qt-hero-scroll-line {
width: 1px;
height: 40px;
background: linear-gradient(to bottom, var(--qt-primary), transparent);
animation: qtScrollLine 2s ease infinite;
}

@keyframes qtScrollLine {
0% { transform: scaleY(0); transform-origin: top; }
50% { transform: scaleY(1); transform-origin: top; }
51% { transform: scaleY(1); transform-origin: bottom; }
100% { transform: scaleY(0); transform-origin: bottom; }
}

.qt-section-header {
text-align: center;
margin-bottom: 4rem;
}

.qt-section-title {
font-size: clamp(1.75rem, 4vw, 2.75rem);
font-weight: 800;
margin-bottom: 1rem;
color: var(--qt-text);
}

.qt-section-desc {
font-size: 1.0625rem;
color: var(--qt-text-secondary);
max-width: 600px;
margin: 0 auto;
}

.qt-stats {
background: var(--qt-bg-dark);
position: relative;
overflow: hidden;
}

.qt-stats::before {
content: '';
position: absolute;
inset: 0;
background:
repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(0, 0, 0, 0.01) 1px, transparent 2px);
pointer-events: none;
}

.qt-stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
position: relative;
z-index: 1;
}

.qt-stat-item {
text-align: center;
padding: 2rem 1rem;
}

.qt-stat-icon {
font-size: 2rem;
color: var(--qt-primary);
margin-bottom: 1rem;
}

.qt-stat-number {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 800;
color: var(--qt-primary);
display: inline;
}

.qt-stat-suffix {
font-size: clamp(1.25rem, 3vw, 2rem);
font-weight: 700;
color: var(--qt-accent);
display: inline;
}

.qt-stat-label {
font-size: 0.9375rem;
color: rgba(255, 255, 255, 0.6);
margin-top: 0.5rem;
letter-spacing: 0.02em;
}

@media (max-width: 767.98px) {
.qt-stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
}

.qt-tab-section {
background: var(--qt-bg);
}

.qt-tab-nav {
display: flex;
justify-content: center;
gap: 0.5rem;
margin-bottom: 3rem;
position: relative;
flex-wrap: wrap;
background: rgba(201, 169, 110, 0.05);
border-radius: 12px;
padding: 0.5rem;
}

.qt-tab-btn {
background: none;
border: none;
padding: 0.875rem 1.75rem;
font-size: 0.9375rem;
font-weight: 600;
color: var(--qt-text-secondary);
cursor: pointer;
border-radius: 8px;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
position: relative;
z-index: 1;
}

.qt-tab-btn:hover {
color: var(--qt-primary);
}

.qt-tab-active {
color: var(--qt-primary);
background: var(--qt-bg);
box-shadow: 0 2px 10px var(--qt-shadow);
}

.qt-tab-indicator {
position: absolute;
bottom: 0;
height: 3px;
background: var(--qt-primary);
border-radius: 3px;
transition: left 0.3s ease, width 0.3s ease;
display: none;
}

.qt-tab-content {
min-height: 60vh;
}

.qt-tab-pane {
display: none;
animation: qtFadeIn 0.5s ease;
}

.qt-tab-pane-active {
display: block;
}

@keyframes qtFadeIn {
from { opacity: 0; transform: translateY(15px); }
to { opacity: 1; transform: translateY(0); }
}

.qt-product-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.qt-product-card {
border-radius: 16px;
overflow: hidden;
}

.qt-flip-card {
perspective: 1000px;
cursor: pointer;
}

.qt-flip-inner {
position: relative;
width: 100%;
height: 100%;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
transform-style: preserve-3d;
}

.qt-flipped .qt-flip-inner {
transform: rotateY(180deg);
}

.qt-flip-front,
.qt-flip-back {
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
border-radius: 16px;
overflow: hidden;
}

.qt-flip-front {
position: relative;
z-index: 2;
background: #fff;
border: 1px solid var(--qt-border);
box-shadow: 0 4px 20px var(--qt-shadow);
}

.qt-flip-back {
position: absolute;
inset: 0;
transform: rotateY(180deg);
background: linear-gradient(135deg, var(--qt-bg-dark), #2a2118);
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: center;
color: #fff;
}

.qt-flip-back h4 {
color: var(--qt-primary);
margin-bottom: 1rem;
font-size: 1.25rem;
}

.qt-flip-back ul {
list-style: none;
padding: 0;
margin-bottom: 1.5rem;
}

.qt-flip-back li {
padding: 0.375rem 0;
color: rgba(255, 255, 255, 0.8);
font-size: 0.875rem;
position: relative;
padding-left: 1.25rem;
}

.qt-flip-back li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--qt-accent);
font-weight: 700;
}

.qt-product-img {
position: relative;
overflow: hidden;
aspect-ratio: 16 / 10;
}

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

.qt-flip-card:hover .qt-product-img img {
transform: scale(1.05);
}

.qt-product-badge {
position: absolute;
top: 1rem;
right: 1rem;
background: var(--qt-accent);
color: var(--qt-bg-dark);
padding: 0.25rem 0.75rem;
border-radius: 50px;
font-size: 0.75rem;
font-weight: 700;
}

.qt-product-info {
padding: 1.5rem;
}

.qt-product-info h3 {
font-size: 1.125rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: var(--qt-text);
}

.qt-product-info p {
font-size: 0.875rem;
color: var(--qt-text-secondary);
margin-bottom: 1rem;
line-height: 1.6;
}

.qt-product-tags {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}

.qt-product-tags span {
padding: 0.25rem 0.625rem;
background: rgba(201, 169, 110, 0.1);
color: var(--qt-primary);
border-radius: 50px;
font-size: 0.75rem;
font-weight: 500;
}

@media (max-width: 991.98px) {
.qt-product-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 575.98px) {
.qt-product-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
}

.qt-craft-section {
display: flex;
gap: 3rem;
align-items: center;
}

.qt-craft-visual {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px var(--qt-shadow);
}

.qt-craft-visual img {
width: 100%;
height: 100%;
object-fit: cover;
min-height: 400px;
}

.qt-craft-content h3 {
font-size: 1.75rem;
font-weight: 700;
margin-bottom: 1rem;
}

.qt-craft-lead {
font-size: 1.0625rem;
color: var(--qt-text-secondary);
margin-bottom: 2rem;
line-height: 1.8;
}

.qt-craft-steps {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.qt-craft-step {
display: flex;
gap: 1.25rem;
align-items: flex-start;
}

.qt-craft-step-num {
font-size: 2rem;
font-weight: 800;
color: var(--qt-primary);
opacity: 0.3;
line-height: 1;
min-width: 50px;
}

.qt-craft-step-text h4 {
font-size: 1.0625rem;
font-weight: 700;
margin-bottom: 0.25rem;
}

.qt-craft-step-text p {
font-size: 0.875rem;
color: var(--qt-text-secondary);
}

@media (max-width: 767.98px) {
.qt-craft-section {
flex-direction: column;
}
}

.qt-service-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.qt-service-card {
background: #fff;
border: 1px solid var(--qt-border);
border-radius: 16px;
padding: 2.5rem 2rem;
text-align: center;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}

.qt-service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--qt-primary), var(--qt-accent));
transform: scaleX(0);
transition: transform 0.4s ease;
}

.qt-service-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 50px var(--qt-shadow);
}

.qt-service-card:hover::before {
transform: scaleX(1);
}

.qt-service-icon {
font-size: 2.5rem;
color: var(--qt-primary);
margin-bottom: 1.25rem;
}

.qt-service-card h3 {
font-size: 1.125rem;
font-weight: 700;
margin-bottom: 0.75rem;
}

.qt-service-card p {
font-size: 0.875rem;
color: var(--qt-text-secondary);
line-height: 1.7;
}

@media (max-width: 767.98px) {
.qt-service-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.qt-service-card {
padding: 1.5rem 1rem;
}
}

.qt-news-tab-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.qt-news-tab-card {
background: #fff;
border: 1px solid var(--qt-border);
border-radius: 16px;
overflow: hidden;
transition: all 0.4s ease;
}

.qt-news-tab-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px var(--qt-shadow);
}

.qt-news-tab-img {
aspect-ratio: 16 / 9;
overflow: hidden;
}

.qt-news-tab-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.qt-news-tab-card:hover .qt-news-tab-img img {
transform: scale(1.05);
}

.qt-news-tab-body {
padding: 1.5rem;
}

.qt-news-tab-meta time {
font-size: 0.8125rem;
color: var(--qt-text-secondary);
}

.qt-news-tab-body h3 {
font-size: 1rem;
font-weight: 700;
margin: 0.5rem 0;
line-height: 1.5;
}

.qt-news-tab-body h3 a {
color: var(--qt-text);
}

.qt-news-tab-body h3 a:hover {
color: var(--qt-primary);
}

.qt-news-tab-body p {
font-size: 0.8125rem;
color: var(--qt-text-secondary);
line-height: 1.6;
margin-bottom: 1rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

.qt-news-tab-more {
font-size: 0.8125rem;
font-weight: 600;
color: var(--qt-primary);
}

@media (max-width: 767.98px) {
.qt-news-tab-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
}

.qt-values {
background: #fff;
position: relative;
overflow: hidden;
}

.qt-values-wheel {
position: relative;
width: 100%;
max-width: 700px;
height: 700px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}

.qt-values-center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 140px;
height: 140px;
border-radius: 50%;
background: linear-gradient(135deg, var(--qt-primary), var(--qt-secondary));
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
}

.qt-values-center-inner {
text-align: center;
color: #fff;
}

.qt-values-center-inner img {
height: 36px;
margin: 0 auto 0.5rem;
filter: brightness(10);
}

.qt-values-center-inner span {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.05em;
}

.qt-values-item {
position: absolute;
top: 50%;
left: 50%;
margin-left: -70px;
margin-top: -50px;
width: 140px;
text-align: center;
transition: all 0.5s ease;
z-index: 5;
}

.qt-values-line {
position: absolute;
top: 50%;
left: 50%;
height: 1px;
background: rgba(201, 169, 110, 0.2);
transform-origin: left center;
z-index: 1;
}

.qt-values-card {
background: #fff;
border: 1px solid var(--qt-border);
border-radius: 12px;
padding: 1.25rem;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
z-index: 2;
}

.qt-values-card:hover {
transform: scale(1.1);
box-shadow: 0 10px 30px var(--qt-shadow);
border-color: var(--qt-primary);
}

.qt-values-icon {
font-size: 1.5rem;
color: var(--qt-primary);
margin-bottom: 0.5rem;
}

.qt-values-card h4 {
font-size: 0.875rem;
font-weight: 700;
margin-bottom: 0.25rem;
color: var(--qt-text);
}

.qt-values-card p {
font-size: 0.75rem;
color: var(--qt-text-secondary);
line-height: 1.5;
}

.qt-values-expanded {
background: var(--qt-bg-dark) !important;
color: #fff !important;
border-color: var(--qt-primary) !important;
}

.qt-values-expanded h4,
.qt-values-expanded p {
color: #fff !important;
}

@media (max-width: 767.98px) {
.qt-values-wheel {
height: auto;
display: flex;
flex-direction: column;
gap: 1rem;
padding: 2rem 0;
}
.qt-values-center {
position: relative;
top: auto;
left: auto;
transform: none;
margin: 0 auto 2rem;
}
.qt-values-item {
position: relative;
top: auto;
left: auto;
margin: 0;
width: 100%;
max-width: 300px;
}
.qt-values-line {
display: none;
}
}

.qt-doodle {
background: var(--qt-bg);
}

.qt-doodle-wrapper {
position: relative;
border-radius: 16px;
overflow: hidden;
border: 1px solid var(--qt-border);
}

.qt-doodle-canvas {
width: 100%;
height: 400px;
display: block;
background: #faf8f5;
cursor: crosshair;
}

.qt-doodle-controls {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 1.5rem;
background: #fff;
border-top: 1px solid var(--qt-border);
}

.qt-doodle-hint {
font-size: 0.8125rem;
color: var(--qt-text-secondary);
}

.qt-blog {
background: #fff;
}

.qt-blog-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.qt-blog-card {
background: var(--qt-bg);
border-radius: 16px;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid var(--qt-border);
}

.qt-blog-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 50px var(--qt-shadow);
}

.qt-blog-img {
position: relative;
aspect-ratio: 16 / 9;
overflow: hidden;
}

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

.qt-blog-card:hover .qt-blog-img img {
transform: scale(1.05);
}

.qt-blog-date {
position: absolute;
bottom: 1rem;
left: 1rem;
background: var(--qt-bg-dark);
color: #fff;
padding: 0.5rem 0.75rem;
border-radius: 8px;
text-align: center;
line-height: 1.2;
}

.qt-blog-date-day {
display: block;
font-size: 1.25rem;
font-weight: 800;
}

.qt-blog-date-month {
display: block;
font-size: 0.6875rem;
opacity: 0.7;
}

.qt-blog-body {
padding: 1.5rem;
}

.qt-blog-tags {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
margin-bottom: 0.75rem;
}

.qt-blog-tag {
padding: 0.1875rem 0.625rem;
background: rgba(201, 169, 110, 0.1);
color: var(--qt-primary);
border-radius: 50px;
font-size: 0.6875rem;
font-weight: 500;
}

.qt-blog-body h3 {
font-size: 1.0625rem;
font-weight: 700;
margin-bottom: 0.5rem;
line-height: 1.5;
}

.qt-blog-body h3 a {
color: var(--qt-text);
transition: color 0.3s ease;
}

.qt-blog-card:hover h3 a {
color: var(--qt-primary);
}

.qt-blog-body p {
font-size: 0.8125rem;
color: var(--qt-text-secondary);
line-height: 1.7;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
margin-bottom: 1rem;
}

.qt-blog-footer {
display: flex;
align-items: center;
justify-content: space-between;
}

.qt-blog-footer time {
font-size: 0.75rem;
color: var(--qt-text-secondary);
}

.qt-blog-link {
font-size: 0.8125rem;
font-weight: 600;
color: var(--qt-primary);
}

@media (max-width: 767.98px) {
.qt-blog-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
}

.qt-showcase-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto auto;
gap: 1.5rem;
}

.qt-showcase-item {
position: relative;
border-radius: 16px;
overflow: hidden;
aspect-ratio: 1;
cursor: pointer;
}

.qt-showcase-large {
grid-column: span 2;
grid-row: span 2;
aspect-ratio: auto;
}

.qt-showcase-wide {
grid-column: span 2;
}

.qt-showcase-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}

.qt-showcase-item:hover img {
transform: scale(1.08);
}

.qt-showcase-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(26, 23, 20, 0.8), transparent 60%);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 1.5rem;
color: #fff;
opacity: 0;
transition: opacity 0.4s ease;
}

.qt-showcase-item:hover .qt-showcase-overlay {
opacity: 1;
}

.qt-showcase-overlay h4 {
font-size: 1.125rem;
font-weight: 700;
margin-bottom: 0.25rem;
}

.qt-showcase-overlay p {
font-size: 0.8125rem;
opacity: 0.8;
}

@media (max-width: 767.98px) {
.qt-showcase-grid {
grid-template-columns: repeat(2, 1fr);
}
.qt-showcase-large {
grid-column: span 2;
grid-row: span 1;
aspect-ratio: 16 / 9;
}
.qt-showcase-wide {
grid-column: span 2;
}
}

.qt-city {
background: #fff;
}

.qt-city-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
gap: 0.75rem;
}

.qt-city-card {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.375rem;
padding: 0.875rem 0.5rem;
background: var(--qt-bg);
border: 1px solid var(--qt-border);
border-radius: 10px;
text-align: center;
transition: all 0.3s ease;
text-decoration: none;
}

.qt-city-card:hover {
border-color: var(--qt-primary);
background: rgba(201, 169, 110, 0.05);
transform: translateY(-3px);
box-shadow: 0 5px 15px var(--qt-shadow);
}

.qt-city-card i {
color: var(--qt-primary);
font-size: 1rem;
}

.qt-city-card h5 {
font-size: 0.8125rem;
font-weight: 600;
color: var(--qt-text);
margin: 0;
}

.qt-cta {
position: relative;
}

.qt-cta-inner {
position: relative;
background: linear-gradient(135deg, var(--qt-bg-dark), #2a2118);
border-radius: 24px;
padding: 5rem 3rem;
overflow: hidden;
text-align: center;
}

.qt-cta-brushed {
position: absolute;
inset: 0;
background:
repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(0, 0, 0, 0.01) 1px, transparent 2px),
radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.15), transparent 60%);
pointer-events: none;
}

.qt-cta-content {
position: relative;
z-index: 1;
}

.qt-cta-title {
font-size: clamp(1.5rem, 3.5vw, 2.5rem);
font-weight: 800;
color: #fff;
margin-bottom: 1rem;
}

.qt-cta-title .qt-hollow-text {
background: linear-gradient(135deg, var(--qt-primary), var(--qt-accent));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.qt-cta-content > p {
color: rgba(255, 255, 255, 0.7);
font-size: 1.0625rem;
margin-bottom: 2rem;
}

.qt-cta-actions {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.qt-page-hero {
background: linear-gradient(135deg, var(--qt-bg-dark), #2a2118);
padding-top: 8rem;
}

.qt-page-hero-content {
text-align: center;
}

.qt-breadcrumb {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
margin-bottom: 1.5rem;
font-size: 0.875rem;
}

.qt-breadcrumb a {
color: rgba(255, 255, 255, 0.6);
}

.qt-breadcrumb a:hover {
color: var(--qt-primary);
}

.qt-breadcrumb-sep {
color: rgba(255, 255, 255, 0.3);
}

.qt-breadcrumb-current {
color: var(--qt-primary);
}

.qt-page-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
color: #fff;
margin-bottom: 1rem;
}

.qt-page-title .qt-hollow-text {
background: linear-gradient(135deg, var(--qt-primary), var(--qt-accent));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.qt-page-desc {
color: rgba(255, 255, 255, 0.6);
font-size: 1.0625rem;
max-width: 600px;
margin: 0 auto;
}

.qt-news-items {
display: flex;
flex-direction: column;
gap: 2rem;
}

.qt-news-card {
display: flex;
gap: 1.5rem;
background: #fff;
border: 1px solid var(--qt-border);
border-radius: 16px;
overflow: hidden;
transition: all 0.4s ease;
}

.qt-news-card:hover {
box-shadow: 0 10px 30px var(--qt-shadow);
transform: translateY(-3px);
}

.qt-news-card-img {
flex-shrink: 0;
width: 280px;
overflow: hidden;
}

.qt-news-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.qt-news-card:hover .qt-news-card-img img {
transform: scale(1.05);
}

.qt-news-card-body {
padding: 1.5rem;
display: flex;
flex-direction: column;
}

.qt-news-card-meta {
display: flex;
gap: 1rem;
margin-bottom: 0.75rem;
font-size: 0.8125rem;
color: var(--qt-text-secondary);
}

.qt-news-card-body h3 {
font-size: 1.125rem;
font-weight: 700;
margin-bottom: 0.5rem;
line-height: 1.5;
}

.qt-news-card-body h3 a {
color: var(--qt-text);
}

.qt-news-card:hover h3 a {
color: var(--qt-primary);
}

.qt-news-card-body p {
font-size: 0.875rem;
color: var(--qt-text-secondary);
line-height: 1.7;
margin-bottom: 1rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

.qt-news-card-tags {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
margin-bottom: 1rem;
}

.qt-news-tag {
padding: 0.1875rem 0.625rem;
background: rgba(201, 169, 110, 0.1);
color: var(--qt-primary);
border-radius: 50px;
font-size: 0.6875rem;
}

.qt-news-card-link {
font-size: 0.875rem;
font-weight: 600;
color: var(--qt-primary);
margin-top: auto;
}

@media (max-width: 767.98px) {
.qt-news-card {
flex-direction: column;
}
.qt-news-card-img {
width: 100%;
height: 200px;
}
}

.qt-sidebar {
position: sticky;
top: 100px;
}

.qt-sidebar-widget {
background: #fff;
border: 1px solid var(--qt-border);
border-radius: 16px;
padding: 1.5rem;
margin-bottom: 1.5rem;
}

.qt-sidebar-title {
font-size: 1.0625rem;
font-weight: 700;
margin-bottom: 1.25rem;
padding-bottom: 0.75rem;
border-bottom: 2px solid var(--qt-border);
}

.qt-sidebar-rand {
display: flex;
flex-direction: column;
gap: 1rem;
}

.qt-sidebar-item {
display: flex;
gap: 0.75rem;
text-decoration: none;
transition: all 0.3s ease;
}

.qt-sidebar-item:hover {
transform: translateX(5px);
}

.qt-sidebar-item-img {
width: 80px;
height: 60px;
border-radius: 8px;
overflow: hidden;
flex-shrink: 0;
}

.qt-sidebar-item-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

.qt-sidebar-item-text h5 {
font-size: 0.8125rem;
font-weight: 600;
color: var(--qt-text);
line-height: 1.4;
margin-bottom: 0.25rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

.qt-sidebar-item:hover h5 {
color: var(--qt-primary);
}

.qt-sidebar-item-text time {
font-size: 0.6875rem;
color: var(--qt-text-secondary);
}

.qt-sidebar-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}

.qt-sidebar-tag {
padding: 0.375rem 0.75rem;
background: var(--qt-bg);
border: 1px solid var(--qt-border);
border-radius: 50px;
font-size: 0.75rem;
color: var(--qt-text-secondary);
transition: all 0.3s ease;
cursor: pointer;
}

.qt-sidebar-tag:hover {
background: rgba(201, 169, 110, 0.1);
border-color: var(--qt-primary);
color: var(--qt-primary);
}

.qt-sidebar-contact p {
font-size: 0.9375rem;
color: var(--qt-text);
margin-bottom: 1rem;
}

.qt-sidebar-contact i {
color: var(--qt-primary);
margin-right: 0.5rem;
}

.qt-pagination {
margin-top: 3rem;
display: flex;
justify-content: center;
}

.qt-detail-article {
background: #fff;
border: 1px solid var(--qt-border);
border-radius: 16px;
padding: 3rem;
margin-bottom: 2rem;
}

.qt-detail-header {
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--qt-border);
}

.qt-detail-header h1 {
font-size: clamp(1.5rem, 3vw, 2rem);
font-weight: 800;
line-height: 1.4;
margin-bottom: 1rem;
}

.qt-detail-meta {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
margin-bottom: 1rem;
font-size: 0.875rem;
color: var(--qt-text-secondary);
}

.qt-detail-meta i {
color: var(--qt-primary);
margin-right: 0.25rem;
}

.qt-detail-tags {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}

.qt-detail-tag {
padding: 0.25rem 0.75rem;
background: rgba(201, 169, 110, 0.1);
color: var(--qt-primary);
border-radius: 50px;
font-size: 0.75rem;
}

.qt-detail-content {
font-size: 1rem;
line-height: 2;
color: var(--qt-text);
}

.qt-detail-content img {
border-radius: 12px;
margin: 1.5rem 0;
}

.qt-detail-content p {
margin-bottom: 1.25rem;
}

.qt-detail-nav {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid var(--qt-border);
}

.qt-detail-nav-tags {
display: flex;
align-items: center;
gap: 0.5rem;
flex-wrap: wrap;
}

.qt-detail-nav-tags span:first-child {
font-weight: 600;
color: var(--qt-text-secondary);
}

.qt-related-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
}

.qt-related-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}

.qt-related-card {
background: #fff;
border: 1px solid var(--qt-border);
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
text-decoration: none;
}

.qt-related-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px var(--qt-shadow);
}

.qt-related-card-img {
aspect-ratio: 16 / 9;
overflow: hidden;
}

.qt-related-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

.qt-related-card-text {
padding: 1rem;
}

.qt-related-card-text h4 {
font-size: 0.875rem;
font-weight: 600;
color: var(--qt-text);
line-height: 1.4;
margin-bottom: 0.25rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

.qt-related-card:hover h4 {
color: var(--qt-primary);
}

.qt-related-card-text time {
font-size: 0.75rem;
color: var(--qt-text-secondary);
}

@media (max-width: 767.98px) {
.qt-related-grid {
grid-template-columns: repeat(2, 1fr);
}
.qt-detail-article {
padding: 1.5rem;
}
}

.qt-about-intro {
background: var(--qt-bg);
}

.qt-about-img {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px var(--qt-shadow);
}

.qt-about-img img {
width: 100%;
min-height: 400px;
object-fit: cover;
}

.qt-about-img-badge {
position: absolute;
bottom: 1.5rem;
right: 1.5rem;
background: linear-gradient(135deg, var(--qt-primary), var(--qt-secondary));
color: #fff;
padding: 1.25rem;
border-radius: 12px;
text-align: center;
}

.qt-about-img-num {
display: block;
font-size: 2.5rem;
font-weight: 800;
line-height: 1;
}

.qt-about-text h2 {
font-size: 1.75rem;
font-weight: 800;
margin-bottom: 1rem;
}

.qt-about-lead {
font-size: 1.0625rem;
color: var(--qt-text-secondary);
margin-bottom: 1rem;
line-height: 1.8;
}

.qt-about-text p {
font-size: 0.9375rem;
color: var(--qt-text-secondary);
line-height: 1.8;
margin-bottom: 1rem;
}

.qt-about-features {
display: flex;
gap: 1.5rem;
margin-top: 2rem;
flex-wrap: wrap;
}

.qt-about-feature {
display: flex;
gap: 0.75rem;
align-items: flex-start;
}

.qt-about-feature i {
font-size: 1.5rem;
color: var(--qt-primary);
flex-shrink: 0;
}

.qt-about-feature h5 {
font-size: 0.9375rem;
font-weight: 700;
margin-bottom: 0.125rem;
}

.qt-about-feature p {
font-size: 0.8125rem;
color: var(--qt-text-secondary);
margin: 0;
}

.qt-timeline {
position: relative;
padding-left: 3rem;
}

.qt-timeline::before {
content: '';
position: absolute;
left: 14px;
top: 0;
bottom: 0;
width: 2px;
background: var(--qt-border);
}

.qt-timeline-item {
position: relative;
margin-bottom: 2.5rem;
}

.qt-timeline-dot {
position: absolute;
left: -3rem;
top: 0.5rem;
width: 12px;
height: 12px;
background: var(--qt-primary);
border-radius: 50%;
border: 3px solid var(--qt-bg);
box-shadow: 0 0 0 2px var(--qt-primary);
margin-left: 9px;
}

.qt-timeline-card {
background: #fff;
border: 1px solid var(--qt-border);
border-radius: 12px;
padding: 1.5rem;
transition: all 0.3s ease;
}

.qt-timeline-card:hover {
box-shadow: 0 5px 20px var(--qt-shadow);
}

.qt-timeline-year {
display: inline-block;
background: rgba(201, 169, 110, 0.1);
color: var(--qt-primary);
padding: 0.25rem 0.75rem;
border-radius: 50px;
font-size: 0.8125rem;
font-weight: 700;
margin-bottom: 0.5rem;
}

.qt-timeline-card h4 {
font-size: 1.0625rem;
font-weight: 700;
margin-bottom: 0.25rem;
}

.qt-timeline-card p {
font-size: 0.875rem;
color: var(--qt-text-secondary);
margin: 0;
}

.qt-advantage-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.qt-advantage-card {
border-radius: 16px;
}

.qt-advantage-card .qt-flip-front {
background: #fff;
border: 1px solid var(--qt-border);
padding: 2.5rem 2rem;
text-align: center;
border-radius: 16px;
min-height: 220px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px var(--qt-shadow);
}

.qt-advantage-icon {
font-size: 2.5rem;
color: var(--qt-primary);
margin-bottom: 1rem;
}

.qt-advantage-card h3 {
font-size: 1.0625rem;
font-weight: 700;
margin-bottom: 0.5rem;
}

.qt-advantage-card .qt-flip-front p {
font-size: 0.8125rem;
color: var(--qt-text-secondary);
}

.qt-advantage-card .qt-flip-back {
background: linear-gradient(135deg, var(--qt-bg-dark), #2a2118);
padding: 2rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 16px;
min-height: 220px;
}

.qt-advantage-card .qt-flip-back p {
color: rgba(255, 255, 255, 0.85);
font-size: 0.875rem;
line-height: 1.8;
text-align: center;
}

@media (max-width: 767.98px) {
.qt-advantage-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
}

.qt-about-address {
background: #fff;
}

.qt-address-card {
position: relative;
background: var(--qt-bg);
border: 1px solid var(--qt-border);
border-radius: 20px;
padding: 3rem;
overflow: hidden;
}

.qt-address-brushed {
position: absolute;
inset: 0;
background:
repeating-linear-gradient(90deg, rgba(201, 169, 110, 0.03) 0px, rgba(0, 0, 0, 0.01) 1px, transparent 2px);
pointer-events: none;
}

.qt-address-info {
position: relative;
z-index: 1;
}

.qt-address-info h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 2rem;
}

.qt-address-item {
display: flex;
gap: 1rem;
align-items: flex-start;
margin-bottom: 1.5rem;
}

.qt-address-item i {
font-size: 1.25rem;
color: var(--qt-primary);
margin-top: 0.25rem;
flex-shrink: 0;
}

.qt-address-item span {
font-size: 0.75rem;
color: var(--qt-text-secondary);
text-transform: uppercase;
letter-spacing: 0.05em;
}

.qt-address-item p {
font-size: 1rem;
font-weight: 600;
color: var(--qt-text);
margin: 0.125rem 0 0;
}

.qt-address-map {
border-radius: 12px;
overflow: hidden;
position: relative;
z-index: 1;
}

.qt-address-map img {
width: 100%;
height: 100%;
min-height: 300px;
object-fit: cover;
}

@media (max-width: 767.98px) {
.qt-address-card {
padding: 1.5rem;
}
}

.qt-contact {
background: var(--qt-bg);
}

.qt-contact-info-section h2,
.qt-contact-form-section h2 {
font-size: 1.75rem;
font-weight: 800;
margin-bottom: 1rem;
}

.qt-contact-lead {
font-size: 1rem;
color: var(--qt-text-secondary);
margin-bottom: 2rem;
line-height: 1.8;
}

.qt-contact-cards {
display: flex;
flex-direction: column;
gap: 1.25rem;
margin-bottom: 2rem;
}

.qt-contact-card {
display: flex;
gap: 1.25rem;
align-items: center;
padding: 1.25rem;
background: #fff;
border: 1px solid var(--qt-border);
border-radius: 12px;
transition: all 0.3s ease;
}

.qt-contact-card:hover {
border-color: var(--qt-primary);
box-shadow: 0 5px 15px var(--qt-shadow);
}

.qt-contact-card-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--qt-primary), var(--qt-secondary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 1.25rem;
flex-shrink: 0;
}

.qt-contact-card h4 {
font-size: 0.875rem;
font-weight: 700;
margin-bottom: 0.125rem;
}

.qt-contact-card p {
font-size: 1rem;
font-weight: 600;
color: var(--qt-text);
margin: 0;
}

.qt-contact-card span {
font-size: 0.75rem;
color: var(--qt-text-secondary);
}

.qt-contact-wechat {
text-align: center;
padding: 1.5rem;
background: #fff;
border: 1px solid var(--qt-border);
border-radius: 12px;
}

.qt-contact-wechat img {
width: 160px;
height: 160px;
object-fit: contain;
margin: 0 auto 0.75rem;
}

.qt-contact-wechat span {
font-size: 0.875rem;
color: var(--qt-text-secondary);
}

.qt-contact-form-section {
background: #fff;
border: 1px solid var(--qt-border);
border-radius: 16px;
padding: 2.5rem;
}

.qt-contact-form-desc {
font-size: 0.9375rem;
color: var(--qt-text-secondary);
margin-bottom: 2rem;
}

.qt-form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}

.qt-form-group {
margin-bottom: 1.5rem;
}

.qt-form-group label {
display: block;
font-size: 0.875rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--qt-text);
}

.qt-required {
color: var(--qt-secondary);
}

.qt-form-group input,
.qt-form-group textarea {
width: 100%;
padding: 0.875rem 1rem;
border: 1px solid var(--qt-border);
border-radius: 10px;
font-size: 0.9375rem;
color: var(--qt-text);
background: var(--qt-bg);
transition: all 0.3s ease;
font-family: inherit;
}

.qt-form-group input:focus,
.qt-form-group textarea:focus {
outline: none;
border-color: var(--qt-primary);
box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.qt-form-group textarea {
resize: vertical;
min-height: 120px;
}

.qt-form-message {
margin-top: 1rem;
padding: 0.75rem 1rem;
border-radius: 8px;
font-size: 0.875rem;
display: none;
}

.qt-form-success {
display: block;
background: rgba(34, 197, 94, 0.1);
color: #16a34a;
border: 1px solid rgba(34, 197, 94, 0.2);
}

.qt-form-error {
display: block;
background: rgba(239, 68, 68, 0.1);
color: #dc2626;
border: 1px solid rgba(239, 68, 68, 0.2);
}

@media (max-width: 575.98px) {
.qt-form-row {
grid-template-columns: 1fr;
gap: 0;
}
.qt-contact-form-section {
padding: 1.5rem;
}
}

.qt-footer {
background: var(--qt-bg-dark);
color: rgba(255, 255, 255, 0.7);
}

.qt-footer-top {
padding: 5rem 0 3rem;
}

.qt-footer-logo {
height: 40px;
margin-bottom: 1rem;
filter: brightness(10);
}

.qt-footer-desc {
font-size: 0.875rem;
line-height: 1.8;
margin-bottom: 1.5rem;
color: rgba(255, 255, 255, 0.5);
}

.qt-footer-social {
display: flex;
gap: 0.75rem;
}

.qt-footer-social a {
width: 36px;
height: 36px;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: rgba(255, 255, 255, 0.5);
transition: all 0.3s ease;
}

.qt-footer-social a:hover {
border-color: var(--qt-primary);
color: var(--qt-primary);
background: rgba(201, 169, 110, 0.1);
}

.qt-footer-title {
font-size: 1rem;
font-weight: 700;
color: #fff;
margin-bottom: 1.25rem;
}

.qt-footer-links {
list-style: none;
padding: 0;
margin: 0;
}

.qt-footer-links li {
margin-bottom: 0.625rem;
}

.qt-footer-links a {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.5);
transition: all 0.3s ease;
}

.qt-footer-links a:hover {
color: var(--qt-primary);
padding-left: 5px;
}

.qt-footer-contact-info p {
font-size: 0.875rem;
margin-bottom: 0.625rem;
color: rgba(255, 255, 255, 0.5);
}

.qt-footer-contact-info i {
color: var(--qt-primary);
margin-right: 0.5rem;
width: 16px;
}

.qt-footer-qrcode {
margin-top: 1rem;
text-align: center;
}

.qt-footer-qrcode img {
width: 100px;
height: 100px;
object-fit: contain;
border-radius: 8px;
margin: 0 auto 0.5rem;
background: #fff;
padding: 4px;
}

.qt-footer-qrcode span {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.4);
}

.qt-footer-friends {
padding: 1.5rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.qt-footer-friends h6 {
font-size: 0.8125rem;
color: rgba(255, 255, 255, 0.4);
margin-bottom: 0.75rem;
font-weight: 600;
}

.qt-friend-links {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
}

.qt-friend-links a {
font-size: 0.8125rem;
color: rgba(255, 255, 255, 0.4);
transition: color 0.3s ease;
}

.qt-friend-links a:hover {
color: var(--qt-primary);
}

.qt-footer-bottom {
padding: 1.5rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.qt-footer-bottom-inner {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
}

.qt-footer-bottom p {
font-size: 0.8125rem;
color: rgba(255, 255, 255, 0.35);
margin: 0;
}

.qt-back-top {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 44px;
height: 44px;
background: var(--qt-primary);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: all 0.4s ease;
z-index: 998;
box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
border: none;
font-size: 1.125rem;
}

.qt-back-top-visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.qt-back-top:hover {
background: var(--qt-secondary);
transform: translateY(-3px);
}

@media (max-width: 991.98px) {
.qt-footer-col {
margin-bottom: 2rem;
}
}

@media (max-width: 575.98px) {
.qt-hero-content {
padding: 6rem 0 3rem;
}
.qt-hero-title {
font-size: 2rem;
}
.qt-section-header {
margin-bottom: 2.5rem;
}
.breathe-lg {
padding-top: 8vh;
padding-bottom: 8vh;
}
.breathe-md {
padding-top: 5vh;
padding-bottom: 5vh;
}
.breathe-sm {
padding-top: 3vh;
padding-bottom: 3vh;
}
.qt-cta-inner {
padding: 3rem 1.5rem;
border-radius: 16px;
}
}