/* ==========================================================================
   EverClear Coatings Overview Page Styles
   ========================================================================== */

/* Hero Small Section */
.hero-small {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.hero-small h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white !important;
}

.hero-small p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
    color: white !important;
}

/* Benefits Strip */
.benefits-strip {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Main Container */
main {
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Category Sections */
.category-section {
    margin-bottom: 4rem;
}

.category-title {
    color: #2c5aa0;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.category-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Coatings Grid */
.coatings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Coating Cards */
.coating-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.coating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Badge */
.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.badge-standard {
    background: #28a745;
    color: white;
}

.badge-premium {
    background: #ffc107;
    color: #333;
}

.badge-popular {
    background: #ff6b6b;
    color: white;
}

.badge-specialist {
    background: #6c757d;
    color: white;
}

/* Coating Image */
.coating-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Coating Content */
.coating-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.coating-content h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.coating-content .tagline {
    color: #666;
    font-style: italic;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.coating-content .description {
    color: #333;
    line-height: 1.6;
    margin-bottom: auto;
    flex-grow: 1;
    font-size: 0.95rem;
}

.tech-highlight {
    display: none;
}

.btn-view {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 1rem;
    text-align: center;
}

.btn-view:hover {
    background: #1e3a8a;
}

/* Technical Section */
.technical-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin-top: 4rem;
}

.technical-section h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.tech-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    line-height: 1.7;
    color: #333;
}

.tech-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.tech-list strong {
    color: #2c5aa0;
}

.tech-closing {
    text-align: center;
    font-size: 1.1rem;
    color: #2c5aa0;
    font-weight: 600;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .coatings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .coatings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coating-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-small h1 {
        font-size: 2rem;
    }
    
    .hero-small p {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .coating-image {
        height: 200px;
    }
    
    .technical-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .coating-content h3 {
        font-size: 1.4rem;
    }
}
/* === Unified Blue Hero Rectangle === */
:root{ --hero-height-desktop:480px; --hero-height-mobile:340px; }
.hero,.hero-small,.product-hero{
  min-height:var(--hero-height-desktop);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.hero>*,.hero-small>*,.product-hero>*{margin:0 auto;}
@media(max-width:768px){
  .hero,.hero-small,.product-hero{
    min-height:var(--hero-height-mobile);
    padding:3rem 1.5rem;
  }
}
