/* DropSpeed - Catalog Page Styles */
/* PDF s.2 - Ürün Kataloğu özel stilleri */

/* Page Banner */
.page-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0 4rem;
    position: relative;
    color: var(--bg-white);
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-banner__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.page-banner__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.page-banner__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

/* Intro Content */
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* Product Sections */
.product-section {
    padding: 2rem 0;
}

.product-section__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-section__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.product-section__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-section__image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.product-section__image img:hover {
    transform: scale(1.02);
}

/* Product Options */
.product-options {
    margin-bottom: 2rem;
}

.product-options h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-options__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-options__list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.product-options__list li:last-child {
    border-bottom: none;
}

.product-options__list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Product Features */
.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-features__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.product-features__list li {
    padding: 0.75rem 1rem;
    background: rgba(0, 112, 185, 0.05);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-left: 2.5rem;
    transition: all 0.2s ease;
}

.product-features__list li:hover {
    background: rgba(0, 112, 185, 0.1);
    transform: translateX(4px);
}

.product-features__list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: #FFFFFF;
    color: var(--text-muted);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Alternating Layout */
.section:nth-child(even) .product-section .row {
    flex-direction: row-reverse;
}

/* Section Backgrounds */
.section--muted {
    background-color: var(--bg-light);
}

/* Scroll Anchor Offset */
.section[id] {
    scroll-margin-top: 100px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-banner {
        padding: 6rem 0 3rem;
    }
    
    .page-banner__title {
        font-size: 2.5rem;
    }
    
    .product-section__title {
        font-size: 2rem;
    }
    
    .product-section__description {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .product-features__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 4rem 0 2rem;
    }
    
    .page-banner__title {
        font-size: 2rem;
    }
    
    .page-banner__subtitle {
        font-size: 1.125rem;
    }
    
    .section:nth-child(even) .product-section .row {
        flex-direction: column;
    }
    
    .product-section .row {
        flex-direction: column;
    }
    
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .product-section__content {
        padding: 1rem;
        order: 2;
    }
    
    .product-section__image {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .product-section__title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .product-options,
    .product-features {
        margin-bottom: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 3rem 0 1.5rem;
    }
    
    .page-banner__title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .page-banner__subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .product-section {
        padding: 1rem 0;
    }
    
    .product-section__content {
        padding: 0.5rem;
    }
    
    .product-section__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .product-section__description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .intro-content {
        text-align: left;
    }
    
    .intro-text {
        font-size: 0.9rem;
    }
    
    .product-options h3,
    .product-features h3 {
        font-size: 1.125rem;
    }
    
    .product-options__list li,
    .product-features__list li {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
        padding-left: 2rem;
    }
    
    .product-features__list li {
        padding-left: 2.25rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .page-banner {
        background: none !important;
        color: var(--text-dark) !important;
        padding: 2rem 0 !important;
    }
    
    .page-banner::before {
        display: none !important;
    }
    
    .page-banner__title,
    .page-banner__subtitle {
        color: var(--text-dark) !important;
    }
    
    .cta-section {
        background: none !important;
        color: var(--text-dark) !important;
    }
    
    .cta-title {
        color: var(--text-dark) !important;
    }
    
    .product-section__image img {
        box-shadow: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .product-section__image img {
        border: 2px solid var(--text-dark);
    }
    
    .product-options__list li,
    .product-features__list li {
        border: 1px solid var(--text-dark);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .product-section__image img {
        transition: none;
    }
    
    .product-features__list li {
        transition: none;
    }
    
    .product-features__list li:hover {
        transform: none;
    }
}

/* Dark Mode Support (if implemented in future) */
@media (prefers-color-scheme: dark) {
    .section--muted {
        background-color: rgba(0, 0, 0, 0.05);
    }
}
