/* Cam Kaplama Page Styles */

.cam-header {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 150px 0 60px;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    opacity: 0.9;
}

.cam-calculator {
    padding: 4rem 0;
    background: var(--gray-light);
    min-height: 70vh;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.calculator-form-section,
.calculator-result-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.calculator-form-section h2,
.calculator-result-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
    border-bottom: 3px solid var(--primary-yellow);
    padding-bottom: 1rem;
}

.cam-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-medium);
    font-size: 1rem;
}

.form-group input[type="number"] {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-group input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-hint {
    color: #888;
    font-size: 0.85rem;
    margin-top: -0.3rem;
}

.coating-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coating-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.coating-option:hover {
    border-color: var(--primary-yellow);
    background: var(--yellow-light);
}

.coating-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.coating-option input[type="radio"]:checked + span {
    font-weight: 600;
    color: var(--primary-black);
}

.coating-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-yellow);
    background: var(--yellow-light);
}

.btn-calculate {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.result-container {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-placeholder {
    text-align: center;
    color: #888;
    padding: 2rem;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.result-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.result-label {
    color: var(--gray-medium);
    font-weight: 500;
}

.result-value {
    font-weight: 600;
    color: var(--primary-black);
}

.result-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    margin: 1rem 0;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #2196f3;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.result-total .result-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
}

.result-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1976d2;
    text-shadow: 0 2px 4px rgba(25, 118, 210, 0.2);
}

.result-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.result-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.6;
}

.whatsapp-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    text-align: center;
}

.whatsapp-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    border-bottom: 3px solid var(--primary-yellow);
    padding-bottom: 1rem;
}

.whatsapp-description {
    color: var(--gray-medium);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}


/* Responsive */
@media (max-width: 968px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cam-header {
        padding: 120px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .calculator-form-section,
    .calculator-result-section,
    .whatsapp-section {
        padding: 1.5rem;
    }
    
    .btn-whatsapp {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

    .result-price {
        font-size: 1.8rem;
    }
}

