/* Premium Specifications Section */
.premium-specs-section {
    background: linear-gradient(135deg, #F5F5DC 0%, #FAEBD7 100%);
    color: #333;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.premium-specs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,0 50,25 25,50 0,25" fill="%23c9a96e" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.specs-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.specs-badge {
    display: inline-block;
    background: linear-gradient(45deg, #9B773B, #c9a96e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(155, 119, 59, 0.4);
}

.specs-main-title {
    font-size: 5rem;
    font-weight: 700;
    color: #9B773B;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: 'Gilroy', sans-serif;
    overflow: hidden;
}

.specs-main-title span {
    display: inline-block;
    overflow: visible;
}

.specs-hero-desc {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.specs-hero-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9B773B, #c9a96e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(155, 119, 59, 0.3);
    animation: float 6s ease-in-out infinite;
}

.float-item:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.float-item:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.float-item i {
    font-size: 2rem;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.specs-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.specs-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.spec-tab {
    background: transparent;
    border: 2px solid #9B773B;
    color: #9B773B;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.spec-tab.active,
.spec-tab:hover {
    background: #9B773B;
    border-color: #9B773B;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 119, 59, 0.4);
}

.specs-content {
    position: relative;
}

.spec-panel {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.spec-panel.active {
    display: block;
}

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

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

.spec-card-luxury {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(155, 119, 59, 0.2);
    border-radius: 25px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spec-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9B773B, #c9a96e);
}

.spec-card-luxury:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(155, 119, 59, 0.2);
    border-color: rgba(155, 119, 59, 0.4);
}

.spec-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.spec-icon-premium {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9B773B, #c9a96e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(155, 119, 59, 0.3);
}

.spec-icon-premium i {
    font-size: 2rem;
    color: white;
}

.spec-card-luxury h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9B773B;
    font-family: 'Gilroy', sans-serif;
    letter-spacing: 1px;
}

.spec-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-item {
    padding: 12px 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid rgba(155, 119, 59, 0.1);
    transition: all 0.3s ease;
}

.spec-item::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 12px;
    color: #c9a96e;
    font-size: 0.8rem;
}

.spec-item:hover {
    color: #333;
    transform: translateX(10px);
    border-color: rgba(155, 119, 59, 0.3);
}

@media (max-width: 768px) {
    .specs-hero {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 20px;
        text-align: center;
    }
    
    .specs-main-title {
        font-size: 2.4rem;
    }
    
    .specs-showcase {
        padding: 0 20px;
    }
    
    .specs-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .spec-grid-premium {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .spec-card-luxury {
        padding: 30px 20px;
    }
}