/* --- Product Detail Section --- */
.product-detail-section {
    background-color: #f0f4f8; 
    padding: 60px 0;
}

/* Common Card Styling */
.detail-card {
    background-color: #ffffff;
    border-radius: 15px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: none;
    overflow: hidden; 
}

/* Text Card Specifics */
.text-card {
    padding: 40px;
}

.detail-title {
    color: #a91b4b; /* Primary Red */
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.detail-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Read More Logic */
#more-text {
    display: none; /* Hidden by default */
}

.read-more-link {
    color: #0088cc; 
    text-decoration: underline;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 30px;
    cursor: pointer;
}

.read-more-link:hover {
    color: #005580;
}

/* Request Quote Button */
.btn-quote {
    background-color: #a91b4b;
    color: white;
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background-color: #8a153c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169, 27, 75, 0.3);
}

.btn-quote i {
    font-size: 0.75rem;
    vertical-align: middle;
    margin-top: -2px;
}

/* Image Card Specifics */
.image-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-wrapper {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper img {
    max-width: 85%; 
    max-height: 85%;
    object-fit: contain;
    
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* Responsive Tweak */
@media (max-width: 991px) {
    .text-card {
        padding: 30px 20px;
    }
    .detail-title {
        font-size: 2rem;
    }
    .image-wrapper {
        height: 250px; 
    }
}

/* --- Specifications Section --- */
.specs-section {
    padding: 60px 0;
    background-color: #fff;
}

.specs-title {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Main Grey Container */
.specs-container {
    background-color: #f0f4f8; /* Light grey background */
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Image Styling */
.specs-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); 
}


/* Responsive Adjustments */
@media (max-width: 991px) {
    .specs-container {
        padding: 20px;
    }
    .specs-image {
        margin-bottom: 20px;
    }
    .calle-footer-main {
        font-size: 1.4rem;
    }
}

/* Hexagon Image in Specs Section */
.hex-footer-img {
    height: 200px;       
    width: auto;        
    max-width: 100%;     
    object-fit: contain;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .hex-footer-img {
        height: 150px;  
        margin-bottom: 20px;
    }
}

/* ====================  CTA CSS  ==================== */
.cta-section {
    background-color: #ecf0f3;
    padding: 40px 0 100px 0; 
}

.text-dark-gray { color: #333; font-size: 0.85rem; }

.cta-heading {
    color: var(--primary-red);
    font-size: 2.5rem;
    max-width: 800px;
    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: 50%;           
    transform: translateY(-60%); 
    
    height: 230px;      
    width: auto;
    z-index: 1;          
}


@media (max-width: 1200px) {
    .cta-hex-left {
        height: 180px;
        left: -20px; 
    }
}