/* ================================================================
   PRODUCTS PAGES — TUSAŞ-Inspired Product Details (Kasko & Konut)
   Colors preserved from Ünal Sigorta main design system
   ================================================================ */

/* ==================== PRODUCT HERO BANNER ==================== */
/* We reuse .contact-hero from iletisim.css for the banner structure */

/* ==================== PRODUCT OVERVIEW SECTION ==================== */
.product-overview-section {
    padding: 8rem 4rem;
    background: #ffffff;
}

.product-overview-container {
    max-width: 1600px;
    margin: 0 auto;
}

.product-header-text {
    max-width: 900px;
    margin-bottom: 5rem;
}

.product-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.25rem;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 50px;
}

.product-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background: var(--accent);
}

.product-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.product-desc {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.8;
    font-weight: 500;
}

/* ==================== PRODUCT FEATURES GRID ==================== */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-feature-box {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.product-feature-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-feature-box:hover {
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(23, 44, 129, 0.06);
    transform: translateY(-10px);
}

.product-feature-box:hover::before {
    transform: scaleX(1);
}

.pf-icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s;
}

.product-feature-box:hover .pf-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary);
    color: #ffffff;
}

.pf-icon svg {
    width: 32px;
    height: 32px;
}

.product-feature-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.product-feature-box p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    font-weight: 500;
}

/* ==================== COVERAGE (KAPSAM) LIST ==================== */
.coverage-section {
    padding: 6rem 4rem;
    background: var(--gray-100);
}

.coverage-container {
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-list-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
}

.coverage-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--gray-300);
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 600;
}

.coverage-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.coverage-list li .check-icon {
    width: 24px;
    height: 24px;
    background: rgba(32, 201, 151, 0.15);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.coverage-list li .check-icon svg {
    width: 14px;
    height: 14px;
}

.coverage-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #071961 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-image-wrapper svg {
    width: 150px;
    height: 150px;
    color: rgba(255, 255, 255, 0.1);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, #071961 0%, var(--primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(15deg);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-banner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    color: var(--primary);
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: var(--accent);
    color: #ffffff;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .product-overview-section, .coverage-section, .cta-banner {
        padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    .product-title, .cta-banner h2 {
        font-size: 2.2rem;
    }
    
    .coverage-list-wrapper {
        padding: 2.5rem;
    }

    .coverage-list {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
