.pq-tile-hero {
    position: relative;
    background: #0a0a0a; /* Switching to a more dramatic dark mode for "Creative" feel */
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    pointer-events: auto;
    text-align: center;
    z-index: 20;
}

.hero-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8em;
    color: #e6af5d;
    margin-bottom: 40px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-title {
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 950;
    line-height: 0.8;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -8px;
    text-transform: uppercase;
    position: relative;
}

.hero-title span.outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    display: block;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8); /* Slightly brighter for better contrast */
    max-width: 500px;
    line-height: 1.8;
    font-weight: 400;
    margin: 0 auto;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.pq-button-creative {
    padding: 18px 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.3em;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.pq-button-creative:hover {
    background: #e6af5d;
    border-color: #e6af5d;
    color: #000;
    letter-spacing: 0.4em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255,255,255,0.3);
    z-index: 15;
}

.scroll-line-long {
    width: 100px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    position: relative;
}

.scroll-line-long::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: #e6af5d;
    animation: lineFlow 2s infinite;
}

@keyframes lineFlow {
    0% { left: 0; width: 0; }
    50% { left: 0; width: 100%; }
    100% { left: 100%; width: 0; }
}

.hero-side-text-v {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.6em;
    color: rgba(255,255,255,0.1);
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 70px;
        letter-spacing: -3px;
    }
    .hero-desc {
        font-size: 14px;
        padding: 0 15px;
    }
}

/* Strength & Durability Creative Styles */
.strength-section {
    position: relative;
    background: #ffffff;
    padding: 120px 0;
    overflow: hidden;
}

.blueprint-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(230, 175, 93, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 175, 93, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.strength-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid #f1f5f9;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.strength-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(230, 175, 93, 0.1);
    border-color: #e6af5d;
}

.strength-card i {
    font-size: 40px;
    color: #e6af5d;
    margin-bottom: 25px;
    display: block;
}

.strength-card h6 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #0f172a;
}

.strength-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.floating-stat {
    position: absolute;
    background: #0f172a;
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 24px;
    z-index: 5;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stat-1 { top: 10%; left: -20px; animation: floatY 4s ease-in-out infinite; }
.stat-2 { bottom: 15%; right: -20px; animation: floatY 5s ease-in-out infinite reverse; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.visual-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 175, 93, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}


.pq-tile-lab {
    background: #050505; 
    border: none;
    position: relative;
    overflow: hidden;
}


/* Three Container Responsiveness */
.three-container {
    transition: height 0.3s ease;
}

@media (max-width: 991px) {
    .pq-tile-hero {
        height: 70vh;
    }
    
    .three-container {
        height: 50vh !important;
    }
    
    #dimensionThreeContainer {
        height: 60vh !important;
    }
    
    #heroThreeContainer {
        height: 70vh !important;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 55px;
        letter-spacing: -2px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        letter-spacing: 0.4em;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        margin-top: 30px;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-scroll-indicator, .hero-side-text-v {
        display: none;
    }
    
    .lab-details, .dimension-content, .playground-content {
        padding: 40px 20px !important;
    }
    
    .lab-details h2, .dimension-content h2, .playground-content h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .three-container {
        height: 55vh !important;
        margin-bottom: 30px;
    }

    #labThreeContainer.three-container {
        height: 75vh !important;
    }
    
    .spec-item {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 0.3em;
        margin-bottom: 15px;
    }

    .three-container {
        height: 45vh !important;
        margin-bottom: 20px;
    }
    
    .dim-btn {
        width: 70px;
        height: 70px;
        margin-right: 10px;
    }
    
    .dim-val {
        font-size: 18px;
    }

    .strength-card {
        padding: 30px 20px;
    }

    .pq-tile-hero {
        height: 65vh !important;
    }

    #regions_div {
        height: 350px !important;
    }
}

/* Dimension Selector Architectural Redesign */
.pq-dimension-selector {
    background: #fdfdfd !important;
    border-top: 1px solid #f0f0f0;
}

.dimension-content {
    max-width: 500px;
    margin: 0 auto;
}

.dimension-content h2 {
    font-size: 60px;
    font-weight: 950;
    letter-spacing: -3px;
    line-height: 0.9;
    color: #1a1a1a;
}

.dim-btn {
    width: 100px;
    height: 100px;
    background: transparent;
    border: 1px solid #e0e0e0;
    margin-right: 15px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.dim-btn.active {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.dim-btn.active .dim-val,
.dim-btn.active .dim-unit {
    color: #ffffff;
}

.dim-val {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    display: block;
}

.dim-unit {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    letter-spacing: 2px;
}

#dimensionThreeContainer {
    background-image: 
        radial-gradient(#e0e0e0 1px, transparent 1px),
        radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    border-left: 1px solid #f0f0f0;
}


.dim-btn:hover:not(.active) {
    background: #f5f5f5;
    border-color: #ccc;
}

.dimension-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.label-x, .label-y {
    position: absolute;
    color: #e6af5d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.label-x {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid rgba(230,175,93,0.3);
    padding-bottom: 10px;
    width: 200px;
    text-align: center;
}

.label-y {
    right: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    border-bottom: 1px solid rgba(230,175,93,0.3);
    padding-bottom: 10px;
    width: 200px;
    text-align: center;
}

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

.lab-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #e6af5d;
    z-index: 10;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.lab-hint-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 175, 93, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGold 2s infinite;
}

.spec-item {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 0;
    border-left: 3px solid #e6af5d;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

.spec-item:hover {
    background: rgba(230, 175, 93, 0.1);
    padding-left: 40px;
}

.spec-item h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.spec-item .text-gold {
    font-size: 10px;
    letter-spacing: 2px;
}

.lab-details h2 {
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: -4px;
    color: #ffffff;
    text-transform: uppercase;
}

.lab-details h2 span.outline-white {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    display: block;
}

/* Scanning Line Effect */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(230, 175, 93, 0.5);
    box-shadow: 0 0 15px #e6af5d;
    z-index: 5;
    animation: scanMove 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scanMove {
    0%, 100% { top: 10%; opacity: 0; }
    50% { top: 90%; opacity: 1; }
}

/* Pattern Playground Creative Styles */
.pq-pattern-playground {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.playground-overlay-text {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: rgba(230, 175, 93, 0.4);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 5px;
    z-index: 10;
}

.playground-content h2 {
    font-size: clamp(30px, 4vw, 55px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -2px;
}

.texture-scroll-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: #e6af5d transparent;
}

.texture-picker {
    display: flex;
    gap: 10px;
    width: max-content;
}

.texture-thumb {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
}

.texture-thumb:hover {
    border-color: #e6af5d;
    transform: scale(1.1);
}

.texture-thumb.active {
    border-color: #e6af5d;
    box-shadow: 0 0 15px rgba(230, 175, 93, 0.4);
}

/* Showroom Clean Boutique Redesign */
.pq-showroom-grid {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.showroom-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #f8fafc;
    transition: all 0.5s ease;
    border: 1px solid #f1f5f9;
}

.showroom-card:hover {
    transform: scale(0.98);
    box-shadow: none;
}

.showroom-img-wrapper {
    width: 100%;
    height: 100%;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.showroom-card:hover .showroom-img-wrapper {
    transform: scale(1.2);
}

.showroom-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.showroom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    background: rgba(255,255,255,0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.6s ease;
    opacity: 0;
}

.showroom-card:hover .showroom-overlay {
    background: rgba(255,255,255,0.9);
    opacity: 1;
    backdrop-filter: blur(5px);
}

.series-tag {
    font-size: 11px;
    font-weight: 900;
    color: #e6af5d;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.series-name {
    font-size: 30px;
    font-weight: 950;
    color: #0f172a;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.showroom-btn {
    padding: 15px 35px;
    background: #0f172a;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    border: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.showroom-btn:hover {
    background: #e6af5d;
    color: #000;
}

.showroom-footer-title {
    margin-top: 25px;
    text-align: center;
}

.showroom-footer-title h4 {
    font-weight: 900;
    letter-spacing: -1px;
    color: #0f172a;
    text-transform: uppercase;
}
