/* assets/css/all-product-range-style.css */

/* --- Hero Section - UPDATED --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 280px;
    background-image: url('../images/skin1.jpg'); /* Using a more relevant background image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}
.hero-content p {
    font-size: 1.20rem;
    font-weight: 400;
    opacity: 0.9;
}

/* --- Intro Section --- */
.intro-text-section {
    padding: 40px 20px;
    text-align: center;
}
.intro-text-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #20479E;
    line-height: 1.7;
}

/* --- Unified Product Grid Styles --- */
.product-grid-section {
    padding: 60px 20px;
    background-color: #f8f9fa; 
}

.product-grid-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.product-grid-section .section-header h2 {
    font-size: 2.5rem;
    color: #20479E;
    margin-bottom: 10px;
}
.product-grid-section .section-header .title-underline {
    width: 60px;
    height: 3px;
    background-color: #20479E;
    margin: 0 auto;
}
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.product-item {
    background: #ffffff; 
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background-color: transparent;
}
.product-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #20479E;
    margin-bottom: 15px;
}
.product-item ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* --- Blue Call-to-Action --- */
.new-blue-cta-section {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background: url('../images/Contact_2_Us_V1.png') no-repeat center center;
    background-size: cover;
}
.blue-cta-box {
    position: relative;
    background-color: rgba(17, 61, 145, 0.95);
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 8px;
    color: white;
}
.blue-cta-title {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 30px;
}
.blue-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.blue-cta-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid white;
    width: 100%;
    max-width: 250px;
}
.blue-cta-buttons .btn-primary {
    background-color: white;
    color: #113D91;
}
.blue-cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
}
.blue-cta-buttons .btn:hover {
    opacity: 0.9;
}

/* --- Media Queries --- */
@media (min-width: 540px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    /* UPDATED: Added hero styles for tablet */
    .hero-section { height: 350px; }
    .hero-content h1 { font-size: 3.5rem; }

    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .blue-cta-title { font-size: 2.2rem; }
    .blue-cta-buttons { flex-direction: row; justify-content: center; }
    .blue-cta-buttons .btn { width: auto; }
}
@media (min-width: 992px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    /* UPDATED: Added hero styles for desktop */
    .hero-section { height: 420px; }
    .hero-content h1 { font-size: 4rem; }
}