/* Section Container */
.product-section {
    background-color: #ebf3f8; 
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.container {
    max-width: 1250px;
    width: 100%;
}

.content-wrapper {
    display: flex;
    align-items: flex-start; 
    gap: 40px;
}

/* --- Left Text Column --- */
.text-column {
    flex: 1; 
    padding-right: 20px;
}

.product-title {
    color: #a80d2e; 
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.product-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: justify;
}

/* Hidden Text Styling */
#more-text {
    display: none;
}

#dots {
    display: inline;
}

/* --- Read More Button --- */
#read-toggle-btn {
    background: none;
    border: none;
    color: #00609c;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 25px; 
    padding: 0;
    display: inline-block;
}

#read-toggle-btn:hover {
    color: #004080;
}

/* --- Request Quote Button --- */
.btn-container {
    display: block; 
}

.quote-btn {
    background-color: #a80d2e; 
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.quote-btn:hover {
    background-color: #8a0b26;
}

.quote-btn i {
    font-size: 0.8rem;
}

/* --- Right Image Column --- */
.image-column {
    flex: 0.6; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-width: 100%;
    height: 300px;
    object-fit: contain;
    transform: rotate(-5deg);
}

/* --- Responsiveness --- */
@media (max-width: 900px) {
    .product-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column; 
        gap: 30px;
    }

    .text-column {
        padding-right: 0;
        text-align: left; 
    }
    
    .product-image {
        max-width: 250px; 
        margin: 0 auto;
        display: block;
        transform: rotate(0deg); 
    }
}

/* --- 1. Section Styling (Background & Spacing) --- */
.specs-section {
    background-color: #f0f4f7; 
    padding: 60px 0;
    width: 100%;
}

.specs-section .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- 2. Title Styling --- */
.specs-title {
    color: #b71c1c;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-align: left;
}

/* --- 3. The Layout Wrapper (Flexbox) --- */
.specs-images-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
/* --- Container Layout --- */
.specs-images-wrapper {
    display: flex;
    align-items: center;       
    justify-content: center;   
    gap: 40px;                 
    background-color: #EEF3F6;
    padding: 20px;             
    width: 100%;
    box-sizing: border-box;
}

/* --- Left Column: Drawing --- */
.drawing-box {
    flex: 0 0 25%;            
    max-width: 500px;          
    display: flex;
    justify-content: center;   
}

/* --- Right Column: Table --- */
.table-box {
    flex: 0 0 70%;           
    max-width: 1100px;  
    height: 350px;     
}

/* --- Image Styling --- */
.spec-img {
    width: 100%;               
    height: auto;            
    display: block;            
    mix-blend-mode: multiply;  
}

/* --- 4. The Individual Boxes--- */
/* .drawing-box {
    flex: 0 0 25%;
    max-width: 30%;
    text-align: center;
}

.table-box {
    flex: 0 0 70%;
    max-width: 70%;
} */

/* --- 5. IMAGE STYLING--- */
/* .responsive-img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit:fill;
    mix-blend-mode: multiply; 
} */

/* --- 6. MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .specs-images-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .drawing-box, 
    .table-box {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .drawing-box {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* ====================  CTA CSS  ==================== */
.cta-section {
    background-color: #ecf0f3;
    padding: 40px 0 100px 0; 
}
.text-dark-gray { color: #0b0b0b; font-size: 0.95rem; font-weight: 600; }

.cta-heading {
    color: var(--primary-red);
    font-size: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 800;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
   
}


.btn-cta {
    background-color: var(--primary-red);
    color: white;
    border: none;
    letter-spacing: 1px;
    font-weight: 800;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background-color: #a90226;
    color: white;
    transform: translateY(-3px);
}

/* ==================== NEW CSS FOR HEXAGON IMAGE ==================== */


.cta-section .container {
    position: relative; 
}


.cta-hex-left {
    position: absolute; 
    left: 0;             
    top: 40%;           
    transform: translateY(-60%); 
    
    height: 250px;      
    width: auto;
    z-index: 1;      
    opacity: 0.5;
}


@media (max-width: 1200px) {
    .cta-hex-left {
        height: 180px;
        left: -20px; 
    }
}