:root {
--qt-primary: #1a6b5c;
--qt-secondary: #2d9b84;
--qt-accent: #c9a96e;
--qt-text: #1a1a2e;
--qt-text-secondary: #5a5a6e;
--qt-bg: #fafaf8;
--qt-bg-dark: #0f1a18;
--qt-border: #d4d4d0;
--qt-shadow: rgba(26, 26, 46, 0.08);
--qt-gradient-start: #1a6b5c;
--qt-gradient-end: #2d9b84;
}

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

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

a {
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
}

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

.breathe-lg {
padding: 15vh 0;
}

.breathe-md {
padding: 10vh 0;
}

.breathe-sm {
padding: 5vh 0;
}

.qt-header-nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1030;
transition: transform 0.3s ease-out;
}

.qt-nav-topbar {
background: var(--qt-bg-dark);
padding: 8px 0;
border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

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

.qt-topbar-info {
color: rgba(255, 255, 255, 0.7);
font-size: 0.8rem;
margin-right: 1.5rem;
}

.qt-topbar-info i {
color: var(--qt-accent);
margin-right: 0.3rem;
}

.qt-topbar-social a {
color: rgba(255, 255, 255, 0.7);
margin-left: 0.8rem;
font-size: 1rem;
transition: color 0.3s ease;
}

.qt-topbar-social a:hover {
color: var(--qt-accent);
}

.qt-nav-main {
background: rgba(250, 250, 248, 0.97);
backdrop-filter: blur(20px);
padding: 16px 0;
border-bottom: 0.5px solid var(--qt-border);
transition: transform 0.3s ease-out, box-shadow 0.3s ease;
}

.qt-nav-main.qt-nav-hidden {
transform: translateY(-100%);
}

.qt-nav-main .container-fluid {
display: flex;
align-items: center;
justify-content: space-between;
}

.qt-nav-brand .qt-logo-img {
height: 42px;
width: auto;
}

.qt-nav-list {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 0.5rem;
}

.qt-nav-item .qt-nav-link {
padding: 8px 18px;
font-size: 0.95rem;
font-weight: 500;
color: var(--qt-text);
border: 0.5px solid transparent;
border-radius: 2px;
transition: all 0.3s ease;
position: relative;
}

.qt-nav-item .qt-nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 1.5px;
background: var(--qt-primary);
transition: all 0.3s ease;
transform: translateX(-50%);
}

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

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

.qt-nav-cta .qt-cta-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 10px 24px;
background: var(--qt-primary);
color: #fff;
border: 0.5px solid var(--qt-primary);
border-radius: 2px;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.3s ease;
will-change: transform;
}

.qt-nav-cta .qt-cta-btn:hover {
background: transparent;
color: var(--qt-primary);
}

.qt-mobile-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}

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

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

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

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

.qt-mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: var(--qt-bg);
z-index: 1029;
padding: 100px 30px 30px;
}

.qt-mobile-menu.qt-menu-open {
display: block;
}

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

.qt-mobile-nav-list li a {
display: block;
padding: 16px 0;
font-size: 1.2rem;
border-bottom: 0.5px solid var(--qt-border);
color: var(--qt-text);
}

.qt-mobile-nav-list li.qt-mobile-active a {
color: var(--qt-primary);
}

.qt-mobile-contact {
margin-top: 30px;
}

.qt-mobile-call {
display: block;
text-align: center;
padding: 14px;
background: var(--qt-primary);
color: #fff;
border-radius: 2px;
font-size: 1rem;
}

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

.qt-hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.qt-hero-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 1.5s ease;
}

.qt-hero-slide:first-child {
opacity: 1;
}

.qt-hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(15, 26, 24, 0.85) 0%, rgba(26, 107, 92, 0.6) 100%);
}

.qt-hero-content {
position: relative;
z-index: 2;
width: 100%;
padding-top: 120px;
}

.qt-hero-svg-text {
width: 100%;
max-width: 700px;
height: auto;
margin-bottom: 1rem;
}

.qt-svg-curve-text {
fill: var(--qt-accent);
font-size: 18px;
font-weight: 300;
letter-spacing: 4px;
}

.qt-hero-title {
font-size: clamp(2.5rem, 6vw, 4.5rem);
font-weight: 700;
color: #fff;
margin-bottom: 1rem;
line-height: 1.2;
}

.qt-hero-subtitle {
font-size: clamp(1rem, 2vw, 1.3rem);
color: rgba(255, 255, 255, 0.9);
margin-bottom: 1rem;
}

.qt-hero-desc {
font-size: 1rem;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 2.5rem;
line-height: 1.8;
}

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

.qt-btn-primary {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 14px 32px;
background: var(--qt-primary);
color: #fff;
border: 0.5px solid var(--qt-primary);
border-radius: 2px;
font-size: 1rem;
font-weight: 500;
transition: all 0.3s ease;
cursor: pointer;
will-change: transform;
position: relative;
overflow: hidden;
}

.qt-btn-primary:hover {
background: var(--qt-secondary);
border-color: var(--qt-secondary);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(26, 107, 92, 0.3);
}

.qt-btn-outline {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 14px 32px;
background: transparent;
color: #fff;
border: 0.5px solid rgba(255, 255, 255, 0.5);
border-radius: 2px;
font-size: 1rem;
font-weight: 500;
transition: all 0.3s ease;
will-change: transform;
}

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

.qt-btn-gold {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 14px 32px;
background: var(--qt-accent);
color: #fff;
border: 0.5px solid var(--qt-accent);
border-radius: 2px;
font-size: 1rem;
font-weight: 500;
transition: all 0.3s ease;
will-change: transform;
}

.qt-btn-gold:hover {
background: #b89555;
transform: translateY(-2px);
}

.qt-btn-lg {
padding: 16px 40px;
font-size: 1.1rem;
}

.qt-btn-sm {
padding: 10px 20px;
font-size: 0.9rem;
}

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

.qt-hero-stats {
display: flex;
gap: 3rem;
flex-wrap: wrap;
}

.qt-stat-item {
text-align: center;
}

.qt-stat-num {
display: block;
font-size: 2rem;
font-weight: 700;
color: var(--qt-accent);
}

.qt-stat-label {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.6);
}

.qt-hero-scroll-hint {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
text-align: center;
color: rgba(255, 255, 255, 0.5);
font-size: 0.8rem;
animation: qtBounce 2s infinite;
}

.qt-hero-scroll-hint i {
display: block;
font-size: 1.5rem;
margin-top: 0.5rem;
}

@keyframes qtBounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(10px); }
}

.qt-trust-section {
background: #fff;
border-top: 0.5px solid var(--qt-border);
border-bottom: 0.5px solid var(--qt-border);
}

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

.qt-trust-item {
text-align: center;
padding: 2rem 1rem;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
transition: all 0.3s ease;
will-change: transform;
}

.qt-trust-item:hover {
border-color: var(--qt-primary);
background: rgba(26, 107, 92, 0.02);
}

.qt-trust-item i {
font-size: 2.5rem;
color: var(--qt-primary);
margin-bottom: 1rem;
display: block;
}

.qt-trust-item h4 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}

.qt-trust-item p {
font-size: 0.85rem;
color: var(--qt-text-secondary);
}

.qt-section-tag {
display: inline-block;
font-size: 0.75rem;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--qt-accent);
font-weight: 600;
margin-bottom: 1rem;
}

.qt-section-title {
font-size: clamp(1.8rem, 4vw, 2.8rem);
font-weight: 700;
color: var(--qt-text);
margin-bottom: 1rem;
line-height: 1.3;
}

.qt-section-subtitle {
font-size: 1.05rem;
color: var(--qt-text-secondary);
max-width: 600px;
}

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

.qt-section-header .qt-section-subtitle {
margin: 0 auto;
}

.qt-editorial-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: center;
}

.qt-editorial-text-col .qt-editorial-lead {
font-size: 1.15rem;
color: var(--qt-text);
margin-bottom: 2rem;
line-height: 1.9;
}

.qt-editorial-multi-col {
columns: 2;
column-gap: 3rem;
column-rule: 1px solid var(--qt-border);
margin-bottom: 2rem;
}

.qt-editorial-multi-col p {
font-size: 0.95rem;
color: var(--qt-text-secondary);
margin-bottom: 1em;
}

.qt-text-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--qt-primary);
font-weight: 500;
border-bottom: 0.5px solid var(--qt-primary);
padding-bottom: 2px;
transition: all 0.3s ease;
}

.qt-text-link:hover {
color: var(--qt-secondary);
border-color: var(--qt-secondary);
gap: 0.8rem;
}

.qt-editorial-img-wrapper {
position: relative;
}

.qt-editorial-img-main {
width: 100%;
border-radius: 2px;
border: 0.5px solid var(--qt-border);
}

.qt-editorial-img-accent {
position: absolute;
bottom: -30px;
right: -30px;
width: 55%;
border: 4px solid #fff;
box-shadow: 0 10px 40px var(--qt-shadow);
}

.qt-editorial-img-sub {
width: 100%;
border-radius: 2px;
}

.qt-editorial-img-left {
order: -1;
}

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

.qt-service-card {
padding: 3rem 2.5rem;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
background: transparent;
transition: all 0.4s ease;
will-change: transform;
position: relative;
overflow: hidden;
}

.qt-service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, var(--qt-gradient-start), var(--qt-gradient-end));
transform: scaleX(0);
transition: transform 0.4s ease;
transform-origin: left;
}

.qt-service-card:hover {
border-color: var(--qt-primary);
background: rgba(26, 107, 92, 0.02);
box-shadow: 0 15px 50px var(--qt-shadow);
}

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

.qt-service-icon {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border: 0.5px solid var(--qt-border);
border-radius: 50%;
margin-bottom: 1.5rem;
}

.qt-service-icon i {
font-size: 1.5rem;
color: var(--qt-primary);
}

.qt-service-card h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
}

.qt-service-card p {
color: var(--qt-text-secondary);
font-size: 0.95rem;
margin-bottom: 1.5rem;
line-height: 1.8;
}

.qt-service-features {
display: flex;
gap: 0.8rem;
flex-wrap: wrap;
}

.qt-service-features span {
padding: 4px 12px;
font-size: 0.8rem;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
color: var(--qt-text-secondary);
}

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

.qt-process-step {
text-align: center;
padding: 2rem;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
transition: all 0.3s ease;
position: relative;
}

.qt-process-step:hover {
border-color: var(--qt-accent);
}

.qt-step-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--qt-accent);
opacity: 0.3;
margin-bottom: 1rem;
}

.qt-process-step h4 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}

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

.qt-map-wrapper {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 3rem;
align-items: start;
}

.qt-map-container {
position: relative;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
padding: 2rem;
background: #fff;
}

.qt-interactive-map {
width: 100%;
height: auto;
}

.qt-map-outline {
fill: none;
stroke: var(--qt-border);
stroke-width: 1;
}

.qt-map-pin {
fill: var(--qt-primary);
cursor: pointer;
transition: fill 0.3s ease;
}

.qt-map-pin:hover {
fill: var(--qt-accent);
}

.qt-map-tooltip {
position: absolute;
background: var(--qt-bg-dark);
color: #fff;
padding: 6px 14px;
border-radius: 2px;
font-size: 0.85rem;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
white-space: nowrap;
}

.qt-city-dir-title {
font-size: 1.2rem;
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 0.5px solid var(--qt-border);
}

.qt-city-grid-compact {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 0.5rem;
}

.qt-city-card-compact {
display: flex;
align-items: center;
justify-content: center;
padding: 8px 4px;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
font-size: 0.8rem;
text-align: center;
transition: all 0.3s ease;
color: var(--qt-text-secondary);
}

.qt-city-card-compact:hover {
border-color: var(--qt-primary);
color: var(--qt-primary);
background: rgba(26, 107, 92, 0.03);
}

.qt-testimonial-carousel {
max-width: 800px;
margin: 0 auto;
position: relative;
}

.qt-testimonial-track {
position: relative;
min-height: 280px;
}

.qt-testimonial-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0;
transform: translateX(30px);
transition: all 0.5s ease;
pointer-events: none;
padding: 3rem;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
background: #fff;
}

.qt-testimonial-slide.qt-testimonial-active {
opacity: 1;
transform: translateX(0);
pointer-events: auto;
}

.qt-testimonial-quote {
position: absolute;
top: 20px;
right: 30px;
font-size: 4rem;
color: var(--qt-primary);
opacity: 0.15;
line-height: 1;
}

.qt-testimonial-text {
font-size: 1.1rem;
font-style: italic;
line-height: 1.9;
color: var(--qt-text);
margin-bottom: 2rem;
}

.qt-testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
}

.qt-author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
border: 0.5px solid var(--qt-border);
}

.qt-author-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}

.qt-author-info strong {
display: block;
font-size: 0.95rem;
}

.qt-author-info span {
font-size: 0.8rem;
color: var(--qt-text-secondary);
}

.qt-testimonial-controls {
display: flex;
align-items: center;
justify-content: center;
gap: 1.5rem;
margin-top: 2rem;
}

.qt-testimonial-prev,
.qt-testimonial-next {
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
border: 0.5px solid var(--qt-border);
border-radius: 50%;
background: transparent;
cursor: pointer;
transition: all 0.3s ease;
color: var(--qt-text);
}

.qt-testimonial-prev:hover,
.qt-testimonial-next:hover {
border-color: var(--qt-primary);
color: var(--qt-primary);
}

.qt-testimonial-dots {
display: flex;
gap: 0.5rem;
}

.qt-dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: 0.5px solid var(--qt-border);
background: transparent;
cursor: pointer;
transition: all 0.3s ease;
}

.qt-dot.qt-dot-active {
background: var(--qt-primary);
border-color: var(--qt-primary);
}

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

.qt-news-card {
border: 0.5px solid var(--qt-border);
border-radius: 2px;
overflow: hidden;
transition: all 0.4s ease;
will-change: transform;
}

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

.qt-news-img-wrap {
overflow: hidden;
height: 200px;
}

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

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

.qt-news-content {
padding: 1.5rem;
}

.qt-news-content time {
font-size: 0.8rem;
color: var(--qt-accent);
display: block;
margin-bottom: 0.5rem;
}

.qt-news-content h3 {
font-size: 1.1rem;
margin-bottom: 0.8rem;
line-height: 1.5;
}

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

.qt-news-readmore {
font-size: 0.85rem;
color: var(--qt-primary);
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 0.3rem;
}

.qt-news-readmore:hover {
gap: 0.6rem;
}

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

.qt-color-swatch {
border: 0.5px solid var(--qt-border);
border-radius: 16px;
overflow: hidden;
cursor: pointer;
transition: all 0.3s ease;
will-change: transform;
}

.qt-color-swatch:hover {
transform: scale(1.05);
box-shadow: 0 15px 40px var(--qt-shadow);
}

.qt-swatch-preview {
height: 140px;
}

.qt-color-swatch-primary .qt-swatch-preview {
background: var(--qt-primary);
}

.qt-color-swatch-secondary .qt-swatch-preview {
background: var(--qt-secondary);
}

.qt-color-swatch-accent .qt-swatch-preview {
background: var(--qt-accent);
}

.qt-color-swatch-dark .qt-swatch-preview {
background: var(--qt-bg-dark);
}

.qt-swatch-info {
padding: 1.2rem;
display: flex;
flex-direction: column;
gap: 0.3rem;
}

.qt-swatch-name {
font-weight: 600;
font-size: 1rem;
}

.qt-swatch-hex {
font-size: 0.85rem;
color: var(--qt-text-secondary);
font-family: monospace;
}

.qt-swatch-use {
font-size: 0.8rem;
color: var(--qt-text-secondary);
}

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

.qt-cta-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
opacity: 0.1;
}

.qt-cta-svg-text {
width: 90%;
max-width: 1000px;
}

.qt-svg-wave-text {
fill: #fff;
font-size: 24px;
font-weight: 300;
letter-spacing: 2px;
}

.qt-cta-content {
position: relative;
z-index: 2;
text-align: center;
}

.qt-cta-content h2 {
font-size: clamp(1.8rem, 4vw, 2.5rem);
color: #fff;
margin-bottom: 1.5rem;
}

.qt-cta-content p {
color: rgba(255, 255, 255, 0.7);
font-size: 1.05rem;
margin-bottom: 2.5rem;
line-height: 1.8;
}

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

.qt-news-list-section .row {
gap: 0;
}

.qt-news-list-item {
display: flex;
gap: 2rem;
padding: 2rem 0;
border-bottom: 0.5px solid var(--qt-border);
}

.qt-news-list-img {
flex-shrink: 0;
border-radius: 2px;
overflow: hidden;
}

.qt-news-list-img img {
display: block;
}

.qt-news-list-content h3 {
font-size: 1.2rem;
margin-bottom: 0.8rem;
}

.qt-news-list-content h3 a {
color: var(--qt-text);
transition: color 0.3s ease;
}

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

.qt-news-list-content p {
color: var(--qt-text-secondary);
font-size: 0.95rem;
margin-bottom: 1rem;
}

.qt-news-list-meta {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 0.8rem;
}

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

.qt-tag {
padding: 2px 10px;
font-size: 0.75rem;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
color: var(--qt-text-secondary);
}

.qt-news-date {
font-size: 0.8rem;
color: var(--qt-text-secondary);
}

.qt-news-date i {
margin-right: 0.3rem;
}

.qt-news-list-link {
font-size: 0.9rem;
color: var(--qt-primary);
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 0.3rem;
}

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

.qt-sidebar-block {
border: 0.5px solid var(--qt-border);
border-radius: 2px;
padding: 1.5rem;
margin-bottom: 1.5rem;
background: #fff;
}

.qt-sidebar-title {
font-size: 1.1rem;
padding-bottom: 1rem;
margin-bottom: 1rem;
border-bottom: 0.5px solid var(--qt-border);
}

.qt-sidebar-rec-item {
display: flex;
gap: 0.8rem;
padding: 0.8rem 0;
border-bottom: 0.5px solid rgba(0,0,0,0.05);
align-items: center;
}

.qt-sidebar-rec-item img {
width: 60px;
height: 45px;
object-fit: cover;
border-radius: 2px;
flex-shrink: 0;
}

.qt-sidebar-rec-item span {
font-size: 0.85rem;
line-height: 1.5;
}

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

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

.qt-sidebar-contact .qt-btn-primary {
margin-top: 1rem;
display: block;
text-align: center;
}

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

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

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

.qt-detail-meta {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
margin-bottom: 1rem;
}

.qt-meta-item {
font-size: 0.85rem;
color: var(--qt-text-secondary);
}

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

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

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

.qt-detail-body img {
max-width: 100%;
border-radius: 2px;
margin: 1.5rem 0;
}

.qt-detail-body p {
margin-bottom: 1.5rem;
}

.qt-detail-body h2,
.qt-detail-body h3 {
margin: 2rem 0 1rem;
}

.qt-detail-share {
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 0.5px solid var(--qt-border);
display: flex;
align-items: center;
gap: 0.8rem;
}

.qt-detail-share span {
font-size: 0.9rem;
color: var(--qt-text-secondary);
}

.qt-share-btn {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
border: 0.5px solid var(--qt-border);
border-radius: 50%;
color: var(--qt-text-secondary);
transition: all 0.3s ease;
}

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

.qt-related-articles {
margin-bottom: 3rem;
}

.qt-related-title {
font-size: 1.3rem;
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 0.5px solid var(--qt-border);
}

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

.qt-related-item {
padding: 1rem;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
font-size: 0.9rem;
transition: all 0.3s ease;
display: block;
}

.qt-related-item:hover {
border-color: var(--qt-primary);
color: var(--qt-primary);
}

.qt-about-img-stack {
position: relative;
}

.qt-about-img-1 {
width: 85%;
border-radius: 2px;
border: 0.5px solid var(--qt-border);
}

.qt-about-img-2 {
position: absolute;
bottom: -20px;
right: 0;
width: 50%;
border: 4px solid #fff;
box-shadow: 0 10px 40px var(--qt-shadow);
border-radius: 2px;
}

.qt-about-highlights {
margin-top: 2rem;
}

.qt-about-highlight-item {
display: flex;
gap: 1.2rem;
padding: 1.5rem 0;
border-bottom: 0.5px solid var(--qt-border);
}

.qt-about-highlight-item i {
font-size: 1.5rem;
color: var(--qt-primary);
flex-shrink: 0;
margin-top: 0.2rem;
}

.qt-about-highlight-item h4 {
font-size: 1rem;
margin-bottom: 0.3rem;
}

.qt-about-highlight-item p {
font-size: 0.9rem;
color: var(--qt-text-secondary);
}

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

.qt-value-card {
text-align: center;
padding: 2.5rem 1.5rem;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
transition: all 0.3s ease;
}

.qt-value-card:hover {
border-color: var(--qt-primary);
background: rgba(26, 107, 92, 0.02);
}

.qt-value-icon {
width: 60px;
height: 60px;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
border: 0.5px solid var(--qt-border);
border-radius: 50%;
}

.qt-value-icon i {
font-size: 1.5rem;
color: var(--qt-primary);
}

.qt-value-card h3 {
font-size: 1.1rem;
margin-bottom: 0.8rem;
}

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

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

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

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

.qt-timeline-item::before {
content: '';
position: absolute;
left: -3.35rem;
top: 0.5rem;
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--qt-primary);
border: 2px solid #fff;
box-shadow: 0 0 0 2px var(--qt-primary);
}

.qt-timeline-year {
font-size: 1.5rem;
font-weight: 700;
color: var(--qt-accent);
margin-bottom: 0.5rem;
}

.qt-timeline-content h4 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}

.qt-timeline-content p {
font-size: 0.9rem;
color: var(--qt-text-secondary);
}

.qt-contact-form-wrap {
border: 0.5px solid var(--qt-border);
border-radius: 2px;
padding: 3rem;
background: #fff;
}

.qt-form-title {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}

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

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

.qt-form-group label {
display: block;
font-size: 0.9rem;
font-weight: 500;
margin-bottom: 0.5rem;
}

.qt-required {
color: #e74c3c;
}

.qt-form-group input,
.qt-form-group textarea {
width: 100%;
padding: 12px 16px;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
font-size: 0.95rem;
transition: border-color 0.3s ease;
background: transparent;
font-family: inherit;
}

.qt-form-group input:focus,
.qt-form-group textarea:focus {
outline: none;
border-color: var(--qt-primary);
}

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

.qt-checkbox-wrap {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.85rem;
color: var(--qt-text-secondary);
cursor: pointer;
}

.qt-form-result {
margin-top: 1rem;
text-align: center;
}

.qt-contact-info-side {
padding-left: 2rem;
}

.qt-contact-info-card {
border: 0.5px solid var(--qt-border);
border-radius: 2px;
padding: 2rem;
margin-bottom: 1.5rem;
background: #fff;
}

.qt-contact-info-card h3 {
font-size: 1.2rem;
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 0.5px solid var(--qt-border);
}

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

.qt-info-item i {
font-size: 1.2rem;
color: var(--qt-primary);
margin-top: 0.2rem;
}

.qt-info-item strong {
display: block;
font-size: 0.9rem;
margin-bottom: 0.2rem;
}

.qt-info-item p {
font-size: 0.9rem;
color: var(--qt-text-secondary);
}

.qt-contact-qr-card {
text-align: center;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
padding: 2rem;
margin-bottom: 1.5rem;
background: #fff;
}

.qt-contact-qr-img {
width: 160px;
height: 160px;
margin-bottom: 1rem;
border: 0.5px solid var(--qt-border);
border-radius: 2px;
}

.qt-contact-qr-card p {
font-size: 0.9rem;
color: var(--qt-text-secondary);
line-height: 1.6;
}

.qt-contact-hours {
border: 0.5px solid var(--qt-border);
border-radius: 2px;
padding: 1.5rem;
background: #fff;
}

.qt-contact-hours h4 {
font-size: 1rem;
margin-bottom: 0.8rem;
}

.qt-contact-hours p {
font-size: 0.9rem;
color: var(--qt-text-secondary);
margin-bottom: 0.3rem;
}

.qt-breadcrumb-nav {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.85rem;
color: var(--qt-text-secondary);
margin-bottom: 1.5rem;
}

.qt-breadcrumb-nav a {
color: var(--qt-text-secondary);
transition: color 0.3s ease;
}

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

.qt-page-title {
font-size: clamp(1.8rem, 4vw, 2.5rem);
margin-bottom: 1rem;
}

.qt-page-desc {
font-size: 1.05rem;
color: var(--qt-text-secondary);
}

.qt-news-hero,
.qt-about-hero,
.qt-contact-hero,
.qt-detail-hero {
padding-top: 140px;
background: linear-gradient(180deg, rgba(26, 107, 92, 0.03) 0%, transparent 100%);
}

.qt-footer-main {
position: relative;
background: var(--qt-bg-dark);
color: rgba(255, 255, 255, 0.8);
}

.qt-footer-wave {
position: relative;
margin-top: -1px;
}

.qt-footer-wave svg {
display: block;
width: 100%;
height: 80px;
}

.qt-footer-content {
padding: 4rem 0 2rem;
}

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

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

.qt-footer-cert {
display: flex;
gap: 0.8rem;
flex-wrap: wrap;
}

.qt-cert-badge {
padding: 4px 12px;
border: 0.5px solid rgba(255, 255, 255, 0.2);
border-radius: 2px;
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.7);
}

.qt-cert-badge i {
color: var(--qt-accent);
margin-right: 0.3rem;
}

.qt-footer-title {
font-size: 1rem;
color: #fff;
margin-bottom: 1.5rem;
padding-bottom: 0.8rem;
border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.qt-footer-links a:hover {
color: var(--qt-accent);
}

.qt-footer-contact-info p {
font-size: 0.85rem;
margin-bottom: 0.8rem;
color: rgba(255, 255, 255, 0.6);
}

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

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

.qt-qr-img {
width: 100px;
height: 100px;
border-radius: 4px;
margin-bottom: 0.5rem;
}

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

.qt-footer-bottom {
margin-top: 3rem;
padding-top: 2rem;
border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}

.qt-footer-friends {
margin-bottom: 1.5rem;
}

.qt-footer-friends span {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.5);
margin-right: 0.5rem;
}

.qt-footer-friends a {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.5);
margin-right: 1rem;
transition: color 0.3s ease;
}

.qt-footer-friends a:hover {
color: var(--qt-accent);
}

.qt-footer-copyright p {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.4);
margin-bottom: 0.3rem;
}

.qt-footer-disclaimer {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.3);
}

.qt-float-sidebar {
position: fixed;
right: 20px;
bottom: 30%;
z-index: 1020;
display: flex;
flex-direction: column;
gap: 2px;
}

.qt-float-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
background: var(--qt-primary);
color: #fff;
font-size: 1.2rem;
transition: all 0.3s ease;
position: relative;
cursor: pointer;
}

.qt-float-item:first-child {
border-radius: 4px 4px 0 0;
}

.qt-float-item:last-child {
border-radius: 0 0 4px 4px;
}

.qt-float-item span {
font-size: 0.6rem;
margin-top: 2px;
}

.qt-float-item:hover {
background: var(--qt-secondary);
}

.qt-float-qr-popup {
position: absolute;
right: 60px;
top: 50%;
transform: translateY(-50%);
background: #fff;
padding: 12px;
border-radius: 4px;
box-shadow: 0 5px 20px var(--qt-shadow);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
white-space: nowrap;
}

.qt-float-qr-popup.qt-qr-show {
opacity: 1;
visibility: visible;
}

.qt-float-qr-popup img {
width: 120px;
height: 120px;
display: block;
margin-bottom: 0.5rem;
}

.qt-float-qr-popup p {
font-size: 0.75rem;
text-align: center;
color: var(--qt-text);
}

.qt-float-top {
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.qt-float-top.qt-float-visible {
opacity: 1;
visibility: visible;
}

.qt-ripple-effect {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transform: scale(0);
animation: qtRippleAnim 0.6s ease-out;
pointer-events: none;
}

@keyframes qtRippleAnim {
to {
transform: scale(4);
opacity: 0;
}
}

.qt-toast {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.8);
background: var(--qt-bg-dark);
color: #fff;
padding: 12px 24px;
border-radius: 4px;
font-size: 0.9rem;
z-index: 9999;
opacity: 0;
transition: all 0.3s ease;
pointer-events: none;
}

.qt-toast.qt-toast-show {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}

.qt-konami-confetti {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 99999;
overflow: hidden;
}

.qt-confetti-piece {
position: absolute;
top: -10px;
width: 10px;
height: 10px;
animation: qtConfettiFall 3s ease-in forwards;
}

@keyframes qtConfettiFall {
0% {
transform: translateY(0) rotate(0deg);
opacity: 1;
}
100% {
transform: translateY(100vh) rotate(720deg);
opacity: 0;
}
}

.qt-animate-in {
opacity: 0;
transform: translateY(30px);
animation: qtFadeInUp 0.6s ease forwards;
}

@keyframes qtFadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}

.qt-pagination-wrap {
margin-top: 3rem;
text-align: center;
}

.qt-pagination-wrap .pagination {
justify-content: center;
}

.qt-pagination-wrap .page-link {
border: 0.5px solid var(--qt-border);
color: var(--qt-text);
padding: 8px 14px;
font-size: 0.9rem;
}

.qt-pagination-wrap .page-item.active .page-link {
background: var(--qt-primary);
border-color: var(--qt-primary);
color: #fff;
}

@media (max-width: 991px) {
.qt-nav-list {
display: none;
}

.qt-nav-cta {
display: none;
}

.qt-mobile-toggle {
display: flex;
}

.qt-editorial-layout {
grid-template-columns: 1fr;
gap: 3rem;
}

.qt-editorial-img-left {
order: 0;
}

.qt-services-grid {
grid-template-columns: 1fr;
}

.qt-process-timeline {
grid-template-columns: repeat(2, 1fr);
}

.qt-map-wrapper {
grid-template-columns: 1fr;
}

.qt-city-grid-compact {
grid-template-columns: repeat(5, 1fr);
}

.qt-news-editorial-grid {
grid-template-columns: repeat(2, 1fr);
}

.qt-color-palette-grid {
grid-template-columns: repeat(2, 1fr);
}

.qt-trust-grid {
grid-template-columns: repeat(2, 1fr);
}

.qt-values-grid {
grid-template-columns: repeat(2, 1fr);
}

.qt-editorial-multi-col {
columns: 1;
}

.qt-contact-info-side {
padding-left: 0;
margin-top: 2rem;
}
}

@media (max-width: 767px) {
.breathe-lg {
padding: 8vh 0;
}

.breathe-md {
padding: 6vh 0;
}

.breathe-sm {
padding: 4vh 0;
}

.qt-hero-section {
min-height: 90vh;
}

.qt-hero-title {
font-size: 2rem;
}

.qt-hero-stats {
gap: 1.5rem;
}

.qt-stat-num {
font-size: 1.5rem;
}

.qt-hero-actions {
flex-direction: column;
}

.qt-hero-actions .qt-btn-primary,
.qt-hero-actions .qt-btn-outline {
width: 100%;
justify-content: center;
}

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

.qt-process-timeline {
grid-template-columns: 1fr;
}

.qt-city-grid-compact {
grid-template-columns: repeat(4, 1fr);
}

.qt-news-editorial-grid {
grid-template-columns: 1fr;
}

.qt-news-list-item {
flex-direction: column;
gap: 1rem;
}

.qt-news-list-img img {
width: 100% !important;
height: 180px !important;
}

.qt-color-palette-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}

.qt-testimonial-slide {
padding: 2rem 1.5rem;
}

.qt-detail-article {
padding: 1.5rem;
}

.qt-related-grid {
grid-template-columns: 1fr;
}

.qt-contact-form-wrap {
padding: 1.5rem;
}

.qt-values-grid {
grid-template-columns: 1fr;
}

.qt-cta-actions {
flex-direction: column;
align-items: center;
}

.qt-topbar-info:last-of-type {
display: none;
}

.qt-float-sidebar {
right: 10px;
}

.qt-float-item {
width: 44px;
height: 44px;
font-size: 1rem;
}

.qt-float-item span {
display: none;
}

.qt-footer-content {
padding: 3rem 0 1.5rem;
}

.qt-about-img-2 {
width: 60%;
}

.qt-editorial-img-accent {
right: -10px;
bottom: -15px;
}
}

@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}